home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / binutils-data / i686-pc-linux-gnu / 2.16.1 / info / binutils.info < prev    next >
Text File  |  2006-01-09  |  148KB  |  3,687 lines

  1. This is binutils.info, produced by makeinfo version 4.8 from
  2. /var/tmp/portage/binutils-2.16.1/work/binutils-2.16.1/binutils/doc/binutils.texi.
  3.  
  4. START-INFO-DIR-ENTRY
  5. * Binutils: (binutils).         The GNU binary utilities.
  6. * ar: (binutils)ar.               Create, modify, and extract from archives
  7. * nm: (binutils)nm.               List symbols from object files
  8. * objcopy: (binutils)objcopy.      Copy and translate object files
  9. * objdump: (binutils)objdump.     Display information from object files
  10. * ranlib: (binutils)ranlib.       Generate index to archive contents
  11. * readelf: (binutils)readelf.      Display the contents of ELF format files.
  12. * size: (binutils)size.           List section sizes and total size
  13. * strings: (binutils)strings.     List printable strings from files
  14. * strip: (binutils)strip.         Discard symbols
  15. * c++filt: (binutils)c++filt.      Filter to demangle encoded C++ symbols
  16. * cxxfilt: (binutils)c++filt.     MS-DOS name for c++filt
  17. * addr2line: (binutils)addr2line. Convert addresses to file and line
  18. * nlmconv: (binutils)nlmconv.     Converts object code into an NLM
  19. * windres: (binutils)windres.      Manipulate Windows resources
  20. * dlltool: (binutils)dlltool.      Create files needed to build and use DLLs
  21. END-INFO-DIR-ENTRY
  22.  
  23.    Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
  24. 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
  25.  
  26.    Permission is granted to copy, distribute and/or modify this document
  27. under the terms of the GNU Free Documentation License, Version 1.1 or
  28. any later version published by the Free Software Foundation; with no
  29. Invariant Sections, with no Front-Cover Texts, and with no Back-Cover
  30. Texts.  A copy of the license is included in the section entitled "GNU
  31. Free Documentation License".
  32.  
  33. 
  34. File: binutils.info,  Node: Top,  Next: ar,  Up: (dir)
  35.  
  36. Introduction
  37. ************
  38.  
  39. This brief manual contains documentation for the GNU binary utilities
  40. (collectively version 2.16.1):
  41.  
  42.    This document is distributed under the terms of the GNU Free
  43. Documentation License.  A copy of the license is included in the
  44. section entitled "GNU Free Documentation License".
  45.  
  46. * Menu:
  47.  
  48. * ar::                          Create, modify, and extract from archives
  49. * nm::                          List symbols from object files
  50. * objcopy::            Copy and translate object files
  51. * objdump::                     Display information from object files
  52. * ranlib::                      Generate index to archive contents
  53. * readelf::            Display the contents of ELF format files.
  54. * size::                        List section sizes and total size
  55. * strings::                     List printable strings from files
  56. * strip::                       Discard symbols
  57. * c++filt::            Filter to demangle encoded C++ symbols
  58. * cxxfilt: c++filt.             MS-DOS name for c++filt
  59. * addr2line::            Convert addresses to file and line
  60. * nlmconv::                     Converts object code into an NLM
  61. * windres::            Manipulate Windows resources
  62. * dlltool::            Create files needed to build and use DLLs
  63. * Selecting The Target System:: How these utilities determine the target.
  64. * Reporting Bugs::              Reporting Bugs
  65. * GNU Free Documentation License::  GNU Free Documentation License
  66. * Index::                       Index
  67.  
  68. 
  69. File: binutils.info,  Node: ar,  Next: nm,  Prev: Top,  Up: Top
  70.  
  71. 1 ar
  72. ****
  73.  
  74.      ar [-]P[MOD [RELPOS] [COUNT]] ARCHIVE [MEMBER...]
  75.      ar -M [ <mri-script ]
  76.  
  77.    The GNU `ar' program creates, modifies, and extracts from archives.
  78. An "archive" is a single file holding a collection of other files in a
  79. structure that makes it possible to retrieve the original individual
  80. files (called "members" of the archive).
  81.  
  82.    The original files' contents, mode (permissions), timestamp, owner,
  83. and group are preserved in the archive, and can be restored on
  84. extraction.
  85.  
  86.    GNU `ar' can maintain archives whose members have names of any
  87. length; however, depending on how `ar' is configured on your system, a
  88. limit on member-name length may be imposed for compatibility with
  89. archive formats maintained with other tools.  If it exists, the limit
  90. is often 15 characters (typical of formats related to a.out) or 16
  91. characters (typical of formats related to coff).
  92.  
  93.    `ar' is considered a binary utility because archives of this sort
  94. are most often used as "libraries" holding commonly needed subroutines.
  95.  
  96.    `ar' creates an index to the symbols defined in relocatable object
  97. modules in the archive when you specify the modifier `s'.  Once
  98. created, this index is updated in the archive whenever `ar' makes a
  99. change to its contents (save for the `q' update operation).  An archive
  100. with such an index speeds up linking to the library, and allows
  101. routines in the library to call each other without regard to their
  102. placement in the archive.
  103.  
  104.    You may use `nm -s' or `nm --print-armap' to list this index table.
  105. If an archive lacks the table, another form of `ar' called `ranlib' can
  106. be used to add just the table.
  107.  
  108.    GNU `ar' is designed to be compatible with two different facilities.
  109. You can control its activity using command-line options, like the
  110. different varieties of `ar' on Unix systems; or, if you specify the
  111. single command-line option `-M', you can control it with a script
  112. supplied via standard input, like the MRI "librarian" program.
  113.  
  114. * Menu:
  115.  
  116. * ar cmdline::                  Controlling `ar' on the command line
  117. * ar scripts::                  Controlling `ar' with a script
  118.  
  119. 
  120. File: binutils.info,  Node: ar cmdline,  Next: ar scripts,  Up: ar
  121.  
  122. 1.1 Controlling `ar' on the Command Line
  123. ========================================
  124.  
  125.      ar [`-X32_64'] [`-']P[MOD [RELPOS] [COUNT]] ARCHIVE [MEMBER...]
  126.  
  127.    When you use `ar' in the Unix style, `ar' insists on at least two
  128. arguments to execute: one keyletter specifying the _operation_
  129. (optionally accompanied by other keyletters specifying _modifiers_),
  130. and the archive name to act on.
  131.  
  132.    Most operations can also accept further MEMBER arguments, specifying
  133. particular files to operate on.
  134.  
  135.    GNU `ar' allows you to mix the operation code P and modifier flags
  136. MOD in any order, within the first command-line argument.
  137.  
  138.    If you wish, you may begin the first command-line argument with a
  139. dash.
  140.  
  141.    The P keyletter specifies what operation to execute; it may be any
  142. of the following, but you must specify only one of them:
  143.  
  144. `d'
  145.      _Delete_ modules from the archive.  Specify the names of modules to
  146.      be deleted as MEMBER...; the archive is untouched if you specify
  147.      no files to delete.
  148.  
  149.      If you specify the `v' modifier, `ar' lists each module as it is
  150.      deleted.
  151.  
  152. `m'
  153.      Use this operation to _move_ members in an archive.
  154.  
  155.      The ordering of members in an archive can make a difference in how
  156.      programs are linked using the library, if a symbol is defined in
  157.      more than one member.
  158.  
  159.      If no modifiers are used with `m', any members you name in the
  160.      MEMBER arguments are moved to the _end_ of the archive; you can
  161.      use the `a', `b', or `i' modifiers to move them to a specified
  162.      place instead.
  163.  
  164. `p'
  165.      _Print_ the specified members of the archive, to the standard
  166.      output file.  If the `v' modifier is specified, show the member
  167.      name before copying its contents to standard output.
  168.  
  169.      If you specify no MEMBER arguments, all the files in the archive
  170.      are printed.
  171.  
  172. `q'
  173.      _Quick append_; Historically, add the files MEMBER... to the end of
  174.      ARCHIVE, without checking for replacement.
  175.  
  176.      The modifiers `a', `b', and `i' do _not_ affect this operation;
  177.      new members are always placed at the end of the archive.
  178.  
  179.      The modifier `v' makes `ar' list each file as it is appended.
  180.  
  181.      Since the point of this operation is speed, the archive's symbol
  182.      table index is not updated, even if it already existed; you can
  183.      use `ar s' or `ranlib' explicitly to update the symbol table index.
  184.  
  185.      However, too many different systems assume quick append rebuilds
  186.      the index, so GNU `ar' implements `q' as a synonym for `r'.
  187.  
  188. `r'
  189.      Insert the files MEMBER... into ARCHIVE (with _replacement_). This
  190.      operation differs from `q' in that any previously existing members
  191.      are deleted if their names match those being added.
  192.  
  193.      If one of the files named in MEMBER... does not exist, `ar'
  194.      displays an error message, and leaves undisturbed any existing
  195.      members of the archive matching that name.
  196.  
  197.      By default, new members are added at the end of the file; but you
  198.      may use one of the modifiers `a', `b', or `i' to request placement
  199.      relative to some existing member.
  200.  
  201.      The modifier `v' used with this operation elicits a line of output
  202.      for each file inserted, along with one of the letters `a' or `r'
  203.      to indicate whether the file was appended (no old member deleted)
  204.      or replaced.
  205.  
  206. `t'
  207.      Display a _table_ listing the contents of ARCHIVE, or those of the
  208.      files listed in MEMBER... that are present in the archive.
  209.      Normally only the member name is shown; if you also want to see
  210.      the modes (permissions), timestamp, owner, group, and size, you can
  211.      request that by also specifying the `v' modifier.
  212.  
  213.      If you do not specify a MEMBER, all files in the archive are
  214.      listed.
  215.  
  216.      If there is more than one file with the same name (say, `fie') in
  217.      an archive (say `b.a'), `ar t b.a fie' lists only the first
  218.      instance; to see them all, you must ask for a complete listing--in
  219.      our example, `ar t b.a'.
  220.  
  221. `x'
  222.      _Extract_ members (named MEMBER) from the archive.  You can use
  223.      the `v' modifier with this operation, to request that `ar' list
  224.      each name as it extracts it.
  225.  
  226.      If you do not specify a MEMBER, all files in the archive are
  227.      extracted.
  228.  
  229.  
  230.    A number of modifiers (MOD) may immediately follow the P keyletter,
  231. to specify variations on an operation's behavior:
  232.  
  233. `a'
  234.      Add new files _after_ an existing member of the archive.  If you
  235.      use the modifier `a', the name of an existing archive member must
  236.      be present as the RELPOS argument, before the ARCHIVE
  237.      specification.
  238.  
  239. `b'
  240.      Add new files _before_ an existing member of the archive.  If you
  241.      use the modifier `b', the name of an existing archive member must
  242.      be present as the RELPOS argument, before the ARCHIVE
  243.      specification.  (same as `i').
  244.  
  245. `c'
  246.      _Create_ the archive.  The specified ARCHIVE is always created if
  247.      it did not exist, when you request an update.  But a warning is
  248.      issued unless you specify in advance that you expect to create it,
  249.      by using this modifier.
  250.  
  251. `f'
  252.      Truncate names in the archive.  GNU `ar' will normally permit file
  253.      names of any length.  This will cause it to create archives which
  254.      are not compatible with the native `ar' program on some systems.
  255.      If this is a concern, the `f' modifier may be used to truncate file
  256.      names when putting them in the archive.
  257.  
  258. `i'
  259.      Insert new files _before_ an existing member of the archive.  If
  260.      you use the modifier `i', the name of an existing archive member
  261.      must be present as the RELPOS argument, before the ARCHIVE
  262.      specification.  (same as `b').
  263.  
  264. `l'
  265.      This modifier is accepted but not used.
  266.  
  267. `N'
  268.      Uses the COUNT parameter.  This is used if there are multiple
  269.      entries in the archive with the same name.  Extract or delete
  270.      instance COUNT of the given name from the archive.
  271.  
  272. `o'
  273.      Preserve the _original_ dates of members when extracting them.  If
  274.      you do not specify this modifier, files extracted from the archive
  275.      are stamped with the time of extraction.
  276.  
  277. `P'
  278.      Use the full path name when matching names in the archive.  GNU
  279.      `ar' can not create an archive with a full path name (such archives
  280.      are not POSIX complaint), but other archive creators can.  This
  281.      option will cause GNU `ar' to match file names using a complete
  282.      path name, which can be convenient when extracting a single file
  283.      from an archive created by another tool.
  284.  
  285. `s'
  286.      Write an object-file index into the archive, or update an existing
  287.      one, even if no other change is made to the archive.  You may use
  288.      this modifier flag either with any operation, or alone.  Running
  289.      `ar s' on an archive is equivalent to running `ranlib' on it.
  290.  
  291. `S'
  292.      Do not generate an archive symbol table.  This can speed up
  293.      building a large library in several steps.  The resulting archive
  294.      can not be used with the linker.  In order to build a symbol
  295.      table, you must omit the `S' modifier on the last execution of
  296.      `ar', or you must run `ranlib' on the archive.
  297.  
  298. `u'
  299.      Normally, `ar r'... inserts all files listed into the archive.  If
  300.      you would like to insert _only_ those of the files you list that
  301.      are newer than existing members of the same names, use this
  302.      modifier.  The `u' modifier is allowed only for the operation `r'
  303.      (replace).  In particular, the combination `qu' is not allowed,
  304.      since checking the timestamps would lose any speed advantage from
  305.      the operation `q'.
  306.  
  307. `v'
  308.      This modifier requests the _verbose_ version of an operation.  Many
  309.      operations display additional information, such as filenames
  310.      processed, when the modifier `v' is appended.
  311.  
  312. `V'
  313.      This modifier shows the version number of `ar'.
  314.  
  315.    `ar' ignores an initial option spelt `-X32_64', for compatibility
  316. with AIX.  The behaviour produced by this option is the default for GNU
  317. `ar'.  `ar' does not support any of the other `-X' options; in
  318. particular, it does not support `-X32' which is the default for AIX
  319. `ar'.
  320.  
  321. 
  322. File: binutils.info,  Node: ar scripts,  Prev: ar cmdline,  Up: ar
  323.  
  324. 1.2 Controlling `ar' with a Script
  325. ==================================
  326.  
  327.      ar -M [ <SCRIPT ]
  328.  
  329.    If you use the single command-line option `-M' with `ar', you can
  330. control its operation with a rudimentary command language.  This form
  331. of `ar' operates interactively if standard input is coming directly
  332. from a terminal.  During interactive use, `ar' prompts for input (the
  333. prompt is `AR >'), and continues executing even after errors.  If you
  334. redirect standard input to a script file, no prompts are issued, and
  335. `ar' abandons execution (with a nonzero exit code) on any error.
  336.  
  337.    The `ar' command language is _not_ designed to be equivalent to the
  338. command-line options; in fact, it provides somewhat less control over
  339. archives.  The only purpose of the command language is to ease the
  340. transition to GNU `ar' for developers who already have scripts written
  341. for the MRI "librarian" program.
  342.  
  343.    The syntax for the `ar' command language is straightforward:
  344.    * commands are recognized in upper or lower case; for example, `LIST'
  345.      is the same as `list'.  In the following descriptions, commands are
  346.      shown in upper case for clarity.
  347.  
  348.    * a single command may appear on each line; it is the first word on
  349.      the line.
  350.  
  351.    * empty lines are allowed, and have no effect.
  352.  
  353.    * comments are allowed; text after either of the characters `*' or
  354.      `;' is ignored.
  355.  
  356.    * Whenever you use a list of names as part of the argument to an `ar'
  357.      command, you can separate the individual names with either commas
  358.      or blanks.  Commas are shown in the explanations below, for
  359.      clarity.
  360.  
  361.    * `+' is used as a line continuation character; if `+' appears at
  362.      the end of a line, the text on the following line is considered
  363.      part of the current command.
  364.  
  365.    Here are the commands you can use in `ar' scripts, or when using
  366. `ar' interactively.  Three of them have special significance:
  367.  
  368.    `OPEN' or `CREATE' specify a "current archive", which is a temporary
  369. file required for most of the other commands.
  370.  
  371.    `SAVE' commits the changes so far specified by the script.  Prior to
  372. `SAVE', commands affect only the temporary copy of the current archive.
  373.  
  374. `ADDLIB ARCHIVE'
  375. `ADDLIB ARCHIVE (MODULE, MODULE, ... MODULE)'
  376.      Add all the contents of ARCHIVE (or, if specified, each named
  377.      MODULE from ARCHIVE) to the current archive.
  378.  
  379.      Requires prior use of `OPEN' or `CREATE'.
  380.  
  381. `ADDMOD MEMBER, MEMBER, ... MEMBER'
  382.      Add each named MEMBER as a module in the current archive.
  383.  
  384.      Requires prior use of `OPEN' or `CREATE'.
  385.  
  386. `CLEAR'
  387.      Discard the contents of the current archive, canceling the effect
  388.      of any operations since the last `SAVE'.  May be executed (with no
  389.      effect) even if  no current archive is specified.
  390.  
  391. `CREATE ARCHIVE'
  392.      Creates an archive, and makes it the current archive (required for
  393.      many other commands).  The new archive is created with a temporary
  394.      name; it is not actually saved as ARCHIVE until you use `SAVE'.
  395.      You can overwrite existing archives; similarly, the contents of any
  396.      existing file named ARCHIVE will not be destroyed until `SAVE'.
  397.  
  398. `DELETE MODULE, MODULE, ... MODULE'
  399.      Delete each listed MODULE from the current archive; equivalent to
  400.      `ar -d ARCHIVE MODULE ... MODULE'.
  401.  
  402.      Requires prior use of `OPEN' or `CREATE'.
  403.  
  404. `DIRECTORY ARCHIVE (MODULE, ... MODULE)'
  405. `DIRECTORY ARCHIVE (MODULE, ... MODULE) OUTPUTFILE'
  406.      List each named MODULE present in ARCHIVE.  The separate command
  407.      `VERBOSE' specifies the form of the output: when verbose output is
  408.      off, output is like that of `ar -t ARCHIVE MODULE...'.  When
  409.      verbose output is on, the listing is like `ar -tv ARCHIVE
  410.      MODULE...'.
  411.  
  412.      Output normally goes to the standard output stream; however, if you
  413.      specify OUTPUTFILE as a final argument, `ar' directs the output to
  414.      that file.
  415.  
  416. `END'
  417.      Exit from `ar', with a `0' exit code to indicate successful
  418.      completion.  This command does not save the output file; if you
  419.      have changed the current archive since the last `SAVE' command,
  420.      those changes are lost.
  421.  
  422. `EXTRACT MODULE, MODULE, ... MODULE'
  423.      Extract each named MODULE from the current archive, writing them
  424.      into the current directory as separate files.  Equivalent to `ar -x
  425.      ARCHIVE MODULE...'.
  426.  
  427.      Requires prior use of `OPEN' or `CREATE'.
  428.  
  429. `LIST'
  430.      Display full contents of the current archive, in "verbose" style
  431.      regardless of the state of `VERBOSE'.  The effect is like `ar tv
  432.      ARCHIVE'.  (This single command is a GNU `ar' enhancement, rather
  433.      than present for MRI compatibility.)
  434.  
  435.      Requires prior use of `OPEN' or `CREATE'.
  436.  
  437. `OPEN ARCHIVE'
  438.      Opens an existing archive for use as the current archive (required
  439.      for many other commands).  Any changes as the result of subsequent
  440.      commands will not actually affect ARCHIVE until you next use
  441.      `SAVE'.
  442.  
  443. `REPLACE MODULE, MODULE, ... MODULE'
  444.      In the current archive, replace each existing MODULE (named in the
  445.      `REPLACE' arguments) from files in the current working directory.
  446.      To execute this command without errors, both the file, and the
  447.      module in the current archive, must exist.
  448.  
  449.      Requires prior use of `OPEN' or `CREATE'.
  450.  
  451. `VERBOSE'
  452.      Toggle an internal flag governing the output from `DIRECTORY'.
  453.      When the flag is on, `DIRECTORY' output matches output from `ar
  454.      -tv '....
  455.  
  456. `SAVE'
  457.      Commit your changes to the current archive, and actually save it
  458.      as a file with the name specified in the last `CREATE' or `OPEN'
  459.      command.
  460.  
  461.      Requires prior use of `OPEN' or `CREATE'.
  462.  
  463.  
  464. 
  465. File: binutils.info,  Node: nm,  Next: objcopy,  Prev: ar,  Up: Top
  466.  
  467. 2 nm
  468. ****
  469.  
  470.      nm [`-a'|`--debug-syms'] [`-g'|`--extern-only']
  471.         [`-B'] [`-C'|`--demangle'[=STYLE]] [`-D'|`--dynamic']
  472.         [`-S'|`--print-size'] [`-s'|`--print-armap']
  473.         [`-A'|`-o'|`--print-file-name'][`--special-syms']
  474.         [`-n'|`-v'|`--numeric-sort'] [`-p'|`--no-sort']
  475.         [`-r'|`--reverse-sort'] [`--size-sort'] [`-u'|`--undefined-only']
  476.         [`-t' RADIX|`--radix='RADIX] [`-P'|`--portability']
  477.         [`--target='BFDNAME] [`-f'FORMAT|`--format='FORMAT]
  478.         [`--defined-only'] [`-l'|`--line-numbers'] [`--no-demangle']
  479.         [`-V'|`--version'] [`-X 32_64'] [`--help']  [OBJFILE...]
  480.  
  481.    GNU `nm' lists the symbols from object files OBJFILE....  If no
  482. object files are listed as arguments, `nm' assumes the file `a.out'.
  483.  
  484.    For each symbol, `nm' shows:
  485.  
  486.    * The symbol value, in the radix selected by options (see below), or
  487.      hexadecimal by default.
  488.  
  489.    * The symbol type.  At least the following types are used; others
  490.      are, as well, depending on the object file format.  If lowercase,
  491.      the symbol is local; if uppercase, the symbol is global (external).
  492.  
  493.     `A'
  494.           The symbol's value is absolute, and will not be changed by
  495.           further linking.
  496.  
  497.     `B'
  498.           The symbol is in the uninitialized data section (known as
  499.           BSS).
  500.  
  501.     `C'
  502.           The symbol is common.  Common symbols are uninitialized data.
  503.           When linking, multiple common symbols may appear with the
  504.           same name.  If the symbol is defined anywhere, the common
  505.           symbols are treated as undefined references.  For more
  506.           details on common symbols, see the discussion of -warn-common
  507.           in *Note Linker options: (ld.info)Options.
  508.  
  509.     `D'
  510.           The symbol is in the initialized data section.
  511.  
  512.     `G'
  513.           The symbol is in an initialized data section for small
  514.           objects.  Some object file formats permit more efficient
  515.           access to small data objects, such as a global int variable
  516.           as opposed to a large global array.
  517.  
  518.     `I'
  519.           The symbol is an indirect reference to another symbol.  This
  520.           is a GNU extension to the a.out object file format which is
  521.           rarely used.
  522.  
  523.     `N'
  524.           The symbol is a debugging symbol.
  525.  
  526.     `R'
  527.           The symbol is in a read only data section.
  528.  
  529.     `S'
  530.           The symbol is in an uninitialized data section for small
  531.           objects.
  532.  
  533.     `T'
  534.           The symbol is in the text (code) section.
  535.  
  536.     `U'
  537.           The symbol is undefined.
  538.  
  539.     `V'
  540.           The symbol is a weak object.  When a weak defined symbol is
  541.           linked with a normal defined symbol, the normal defined
  542.           symbol is used with no error.  When a weak undefined symbol
  543.           is linked and the symbol is not defined, the value of the
  544.           weak symbol becomes zero with no error.
  545.  
  546.     `W'
  547.           The symbol is a weak symbol that has not been specifically
  548.           tagged as a weak object symbol.  When a weak defined symbol
  549.           is linked with a normal defined symbol, the normal defined
  550.           symbol is used with no error.  When a weak undefined symbol
  551.           is linked and the symbol is not defined, the value of the
  552.           symbol is determined in a system-specific manner without
  553.           error.  On some systems, uppercase indicates that a default
  554.           value has been specified.
  555.  
  556.     `-'
  557.           The symbol is a stabs symbol in an a.out object file.  In
  558.           this case, the next values printed are the stabs other field,
  559.           the stabs desc field, and the stab type.  Stabs symbols are
  560.           used to hold debugging information.  For more information,
  561.           see *Note Stabs: (stabs.info)Top.
  562.  
  563.     `?'
  564.           The symbol type is unknown, or object file format specific.
  565.  
  566.    * The symbol name.
  567.  
  568.    The long and short forms of options, shown here as alternatives, are
  569. equivalent.
  570.  
  571. `-A'
  572. `-o'
  573. `--print-file-name'
  574.      Precede each symbol by the name of the input file (or archive
  575.      member) in which it was found, rather than identifying the input
  576.      file once only, before all of its symbols.
  577.  
  578. `-a'
  579. `--debug-syms'
  580.      Display all symbols, even debugger-only symbols; normally these
  581.      are not listed.
  582.  
  583. `-B'
  584.      The same as `--format=bsd' (for compatibility with the MIPS `nm').
  585.  
  586. `-C'
  587. `--demangle[=STYLE]'
  588.      Decode ("demangle") low-level symbol names into user-level names.
  589.      Besides removing any initial underscore prepended by the system,
  590.      this makes C++ function names readable. Different compilers have
  591.      different mangling styles. The optional demangling style argument
  592.      can be used to choose an appropriate demangling style for your
  593.      compiler. *Note c++filt::, for more information on demangling.
  594.  
  595. `--no-demangle'
  596.      Do not demangle low-level symbol names.  This is the default.
  597.  
  598. `-D'
  599. `--dynamic'
  600.      Display the dynamic symbols rather than the normal symbols.  This
  601.      is only meaningful for dynamic objects, such as certain types of
  602.      shared libraries.
  603.  
  604. `-f FORMAT'
  605. `--format=FORMAT'
  606.      Use the output format FORMAT, which can be `bsd', `sysv', or
  607.      `posix'.  The default is `bsd'.  Only the first character of
  608.      FORMAT is significant; it can be either upper or lower case.
  609.  
  610. `-g'
  611. `--extern-only'
  612.      Display only external symbols.
  613.  
  614. `-l'
  615. `--line-numbers'
  616.      For each symbol, use debugging information to try to find a
  617.      filename and line number.  For a defined symbol, look for the line
  618.      number of the address of the symbol.  For an undefined symbol,
  619.      look for the line number of a relocation entry which refers to the
  620.      symbol.  If line number information can be found, print it after
  621.      the other symbol information.
  622.  
  623. `-n'
  624. `-v'
  625. `--numeric-sort'
  626.      Sort symbols numerically by their addresses, rather than
  627.      alphabetically by their names.
  628.  
  629. `-p'
  630. `--no-sort'
  631.      Do not bother to sort the symbols in any order; print them in the
  632.      order encountered.
  633.  
  634. `-P'
  635. `--portability'
  636.      Use the POSIX.2 standard output format instead of the default
  637.      format.  Equivalent to `-f posix'.
  638.  
  639. `-S'
  640. `--print-size'
  641.      Print size, not the value, of defined symbols for the `bsd' output
  642.      format.
  643.  
  644. `-s'
  645. `--print-armap'
  646.      When listing symbols from archive members, include the index: a
  647.      mapping (stored in the archive by `ar' or `ranlib') of which
  648.      modules contain definitions for which names.
  649.  
  650. `-r'
  651. `--reverse-sort'
  652.      Reverse the order of the sort (whether numeric or alphabetic); let
  653.      the last come first.
  654.  
  655. `--size-sort'
  656.      Sort symbols by size.  The size is computed as the difference
  657.      between the value of the symbol and the value of the symbol with
  658.      the next higher value.  If the `bsd' output format is used the
  659.      size of the symbol is printed, rather than the value, and `-S'
  660.      must be used in order both size and value to be printed.
  661.  
  662. `--special-syms'
  663.      Display symbols which have a target-specific special meaning.
  664.      These symbols are usually used by the target for some special
  665.      processing and are not normally helpful when included included in
  666.      the normal symbol lists.  For example for ARM targets this option
  667.      would skip the mapping symbols used to mark transistions between
  668.      ARM code, THUMB code and data.
  669.  
  670. `-t RADIX'
  671. `--radix=RADIX'
  672.      Use RADIX as the radix for printing the symbol values.  It must be
  673.      `d' for decimal, `o' for octal, or `x' for hexadecimal.
  674.  
  675. `--target=BFDNAME'
  676.      Specify an object code format other than your system's default
  677.      format.  *Note Target Selection::, for more information.
  678.  
  679. `-u'
  680. `--undefined-only'
  681.      Display only undefined symbols (those external to each object
  682.      file).
  683.  
  684. `--defined-only'
  685.      Display only defined symbols for each object file.
  686.  
  687. `-V'
  688. `--version'
  689.      Show the version number of `nm' and exit.
  690.  
  691. `-X'
  692.      This option is ignored for compatibility with the AIX version of
  693.      `nm'.  It takes one parameter which must be the string `32_64'.
  694.      The default mode of AIX `nm' corresponds to `-X 32', which is not
  695.      supported by GNU `nm'.
  696.  
  697. `--help'
  698.      Show a summary of the options to `nm' and exit.
  699.  
  700. 
  701. File: binutils.info,  Node: objcopy,  Next: objdump,  Prev: nm,  Up: Top
  702.  
  703. 3 objcopy
  704. *********
  705.  
  706.      objcopy [`-F' BFDNAME|`--target='BFDNAME]
  707.              [`-I' BFDNAME|`--input-target='BFDNAME]
  708.              [`-O' BFDNAME|`--output-target='BFDNAME]
  709.              [`-B' BFDARCH|`--binary-architecture='BFDARCH]
  710.              [`-S'|`--strip-all']
  711.              [`-g'|`--strip-debug']
  712.              [`-K' SYMBOLNAME|`--keep-symbol='SYMBOLNAME]
  713.              [`-N' SYMBOLNAME|`--strip-symbol='SYMBOLNAME]
  714.              [`--strip-unneeded-symbol='SYMBOLNAME]
  715.              [`-G' SYMBOLNAME|`--keep-global-symbol='SYMBOLNAME]
  716.              [`-L' SYMBOLNAME|`--localize-symbol='SYMBOLNAME]
  717.              [`-W' SYMBOLNAME|`--weaken-symbol='SYMBOLNAME]
  718.              [`-w'|`--wildcard']
  719.              [`-x'|`--discard-all']
  720.              [`-X'|`--discard-locals']
  721.              [`-b' BYTE|`--byte='BYTE]
  722.              [`-i' INTERLEAVE|`--interleave='INTERLEAVE]
  723.              [`-j' SECTIONNAME|`--only-section='SECTIONNAME]
  724.              [`-R' SECTIONNAME|`--remove-section='SECTIONNAME]
  725.              [`-p'|`--preserve-dates']
  726.              [`--debugging']
  727.              [`--gap-fill='VAL]
  728.              [`--pad-to='ADDRESS]
  729.              [`--set-start='VAL]
  730.              [`--adjust-start='INCR]
  731.              [`--change-addresses='INCR]
  732.              [`--change-section-address' SECTION{=,+,-}VAL]
  733.              [`--change-section-lma' SECTION{=,+,-}VAL]
  734.              [`--change-section-vma' SECTION{=,+,-}VAL]
  735.              [`--change-warnings'] [`--no-change-warnings']
  736.              [`--set-section-flags' SECTION=FLAGS]
  737.              [`--add-section' SECTIONNAME=FILENAME]
  738.              [`--rename-section' OLDNAME=NEWNAME[,FLAGS]]
  739.              [`--change-leading-char'] [`--remove-leading-char']
  740.              [`--srec-len='IVAL] [`--srec-forceS3']
  741.              [`--redefine-sym' OLD=NEW]
  742.              [`--redefine-syms='FILENAME]
  743.              [`--weaken']
  744.              [`--keep-symbols='FILENAME]
  745.              [`--strip-symbols='FILENAME]
  746.              [`--strip-unneeded-symbols='FILENAME]
  747.              [`--keep-global-symbols='FILENAME]
  748.              [`--localize-symbols='FILENAME]
  749.              [`--weaken-symbols='FILENAME]
  750.              [`--alt-machine-code='INDEX]
  751.              [`--prefix-symbols='STRING]
  752.              [`--prefix-sections='STRING]
  753.              [`--prefix-alloc-sections='STRING]
  754.              [`--add-gnu-debuglink='PATH-TO-FILE]
  755.              [`--only-keep-debug']
  756.              [`--writable-text']
  757.              [`--readonly-text']
  758.              [`--pure']
  759.              [`--impure']
  760.              [`-v'|`--verbose']
  761.              [`-V'|`--version']
  762.              [`--help'] [`--info']
  763.              INFILE [OUTFILE]
  764.  
  765.    The GNU `objcopy' utility copies the contents of an object file to
  766. another.  `objcopy' uses the GNU BFD Library to read and write the
  767. object files.  It can write the destination object file in a format
  768. different from that of the source object file.  The exact behavior of
  769. `objcopy' is controlled by command-line options.  Note that `objcopy'
  770. should be able to copy a fully linked file between any two formats.
  771. However, copying a relocatable object file between any two formats may
  772. not work as expected.
  773.  
  774.    `objcopy' creates temporary files to do its translations and deletes
  775. them afterward.  `objcopy' uses BFD to do all its translation work; it
  776. has access to all the formats described in BFD and thus is able to
  777. recognize most formats without being told explicitly.  *Note BFD:
  778. (ld.info)BFD.
  779.  
  780.    `objcopy' can be used to generate S-records by using an output
  781. target of `srec' (e.g., use `-O srec').
  782.  
  783.    `objcopy' can be used to generate a raw binary file by using an
  784. output target of `binary' (e.g., use `-O binary').  When `objcopy'
  785. generates a raw binary file, it will essentially produce a memory dump
  786. of the contents of the input object file.  All symbols and relocation
  787. information will be discarded.  The memory dump will start at the load
  788. address of the lowest section copied into the output file.
  789.  
  790.    When generating an S-record or a raw binary file, it may be helpful
  791. to use `-S' to remove sections containing debugging information.  In
  792. some cases `-R' will be useful to remove sections which contain
  793. information that is not needed by the binary file.
  794.  
  795.    Note--`objcopy' is not able to change the endianness of its input
  796. files.  If the input format has an endianness (some formats do not),
  797. `objcopy' can only copy the inputs into file formats that have the same
  798. endianness or which have no endianness (e.g., `srec').
  799.  
  800. `INFILE'
  801. `OUTFILE'
  802.      The input and output files, respectively.  If you do not specify
  803.      OUTFILE, `objcopy' creates a temporary file and destructively
  804.      renames the result with the name of INFILE.
  805.  
  806. `-I BFDNAME'
  807. `--input-target=BFDNAME'
  808.      Consider the source file's object format to be BFDNAME, rather than
  809.      attempting to deduce it.  *Note Target Selection::, for more
  810.      information.
  811.  
  812. `-O BFDNAME'
  813. `--output-target=BFDNAME'
  814.      Write the output file using the object format BFDNAME.  *Note
  815.      Target Selection::, for more information.
  816.  
  817. `-F BFDNAME'
  818. `--target=BFDNAME'
  819.      Use BFDNAME as the object format for both the input and the output
  820.      file; i.e., simply transfer data from source to destination with no
  821.      translation.  *Note Target Selection::, for more information.
  822.  
  823. `-B BFDARCH'
  824. `--binary-architecture=BFDARCH'
  825.      Useful when transforming a raw binary input file into an object
  826.      file.  In this case the output architecture can be set to BFDARCH.
  827.      This option will be ignored if the input file has a known BFDARCH.
  828.      You can access this binary data inside a program by referencing
  829.      the special symbols that are created by the conversion process.
  830.      These symbols are called _binary_OBJFILE_start,
  831.      _binary_OBJFILE_end and _binary_OBJFILE_size.  e.g. you can
  832.      transform a picture file into an object file and then access it in
  833.      your code using these symbols.
  834.  
  835. `-j SECTIONNAME'
  836. `--only-section=SECTIONNAME'
  837.      Copy only the named section from the input file to the output file.
  838.      This option may be given more than once.  Note that using this
  839.      option inappropriately may make the output file unusable.
  840.  
  841. `-R SECTIONNAME'
  842. `--remove-section=SECTIONNAME'
  843.      Remove any section named SECTIONNAME from the output file.  This
  844.      option may be given more than once.  Note that using this option
  845.      inappropriately may make the output file unusable.
  846.  
  847. `-S'
  848. `--strip-all'
  849.      Do not copy relocation and symbol information from the source file.
  850.  
  851. `-g'
  852. `--strip-debug'
  853.      Do not copy debugging symbols or sections from the source file.
  854.  
  855. `--strip-unneeded'
  856.      Strip all symbols that are not needed for relocation processing.
  857.  
  858. `-K SYMBOLNAME'
  859. `--keep-symbol=SYMBOLNAME'
  860.      Copy only symbol SYMBOLNAME from the source file.  This option may
  861.      be given more than once.
  862.  
  863. `-N SYMBOLNAME'
  864. `--strip-symbol=SYMBOLNAME'
  865.      Do not copy symbol SYMBOLNAME from the source file.  This option
  866.      may be given more than once.
  867.  
  868. `--strip-unneeded-symbol=SYMBOLNAME'
  869.      Do not copy symbol SYMBOLNAME from the source file unless it is
  870.      needed by a relocation.  This option may be given more than once.
  871.  
  872. `-G SYMBOLNAME'
  873. `--keep-global-symbol=SYMBOLNAME'
  874.      Keep only symbol SYMBOLNAME global.  Make all other symbols local
  875.      to the file, so that they are not visible externally.  This option
  876.      may be given more than once.
  877.  
  878. `-L SYMBOLNAME'
  879. `--localize-symbol=SYMBOLNAME'
  880.      Make symbol SYMBOLNAME local to the file, so that it is not
  881.      visible externally.  This option may be given more than once.
  882.  
  883. `-W SYMBOLNAME'
  884. `--weaken-symbol=SYMBOLNAME'
  885.      Make symbol SYMBOLNAME weak. This option may be given more than
  886.      once.
  887.  
  888. `-w'
  889. `--wildcard'
  890.      Permit regular expressions in SYMBOLNAMEs used in other command
  891.      line options.  The question mark (?), asterisk (*), backslash (\)
  892.      and square brackets ([]) operators can be used anywhere in the
  893.      symbol name.  If the first character of the symbol name is the
  894.      exclamation point (!) then the sense of the switch is reversed for
  895.      that symbol.  For example:
  896.  
  897.             -w -W !foo -W fo*
  898.  
  899.      would cause objcopy to weaken all symbols that start with "fo"
  900.      except for the symbol "foo".
  901.  
  902. `-x'
  903. `--discard-all'
  904.      Do not copy non-global symbols from the source file.
  905.  
  906. `-X'
  907. `--discard-locals'
  908.      Do not copy compiler-generated local symbols.  (These usually
  909.      start with `L' or `.'.)
  910.  
  911. `-b BYTE'
  912. `--byte=BYTE'
  913.      Keep only every BYTEth byte of the input file (header data is not
  914.      affected).  BYTE can be in the range from 0 to INTERLEAVE-1, where
  915.      INTERLEAVE is given by the `-i' or `--interleave' option, or the
  916.      default of 4.  This option is useful for creating files to program
  917.      ROM.  It is typically used with an `srec' output target.
  918.  
  919. `-i INTERLEAVE'
  920. `--interleave=INTERLEAVE'
  921.      Only copy one out of every INTERLEAVE bytes.  Select which byte to
  922.      copy with the `-b' or `--byte' option.  The default is 4.
  923.      `objcopy' ignores this option if you do not specify either `-b' or
  924.      `--byte'.
  925.  
  926. `-p'
  927. `--preserve-dates'
  928.      Set the access and modification dates of the output file to be the
  929.      same as those of the input file.
  930.  
  931. `--debugging'
  932.      Convert debugging information, if possible.  This is not the
  933.      default because only certain debugging formats are supported, and
  934.      the conversion process can be time consuming.
  935.  
  936. `--gap-fill VAL'
  937.      Fill gaps between sections with VAL.  This operation applies to
  938.      the _load address_ (LMA) of the sections.  It is done by increasing
  939.      the size of the section with the lower address, and filling in the
  940.      extra space created with VAL.
  941.  
  942. `--pad-to ADDRESS'
  943.      Pad the output file up to the load address ADDRESS.  This is done
  944.      by increasing the size of the last section.  The extra space is
  945.      filled in with the value specified by `--gap-fill' (default zero).
  946.  
  947. `--set-start VAL'
  948.      Set the start address of the new file to VAL.  Not all object file
  949.      formats support setting the start address.
  950.  
  951. `--change-start INCR'
  952. `--adjust-start INCR'
  953.      Change the start address by adding INCR.  Not all object file
  954.      formats support setting the start address.
  955.  
  956. `--change-addresses INCR'
  957. `--adjust-vma INCR'
  958.      Change the VMA and LMA addresses of all sections, as well as the
  959.      start address, by adding INCR.  Some object file formats do not
  960.      permit section addresses to be changed arbitrarily.  Note that
  961.      this does not relocate the sections; if the program expects
  962.      sections to be loaded at a certain address, and this option is
  963.      used to change the sections such that they are loaded at a
  964.      different address, the program may fail.
  965.  
  966. `--change-section-address SECTION{=,+,-}VAL'
  967. `--adjust-section-vma SECTION{=,+,-}VAL'
  968.      Set or change both the VMA address and the LMA address of the named
  969.      SECTION.  If `=' is used, the section address is set to VAL.
  970.      Otherwise, VAL is added to or subtracted from the section address.
  971.      See the comments under `--change-addresses', above. If SECTION
  972.      does not exist in the input file, a warning will be issued, unless
  973.      `--no-change-warnings' is used.
  974.  
  975. `--change-section-lma SECTION{=,+,-}VAL'
  976.      Set or change the LMA address of the named SECTION.  The LMA
  977.      address is the address where the section will be loaded into
  978.      memory at program load time.  Normally this is the same as the VMA
  979.      address, which is the address of the section at program run time,
  980.      but on some systems, especially those where a program is held in
  981.      ROM, the two can be different.  If `=' is used, the section
  982.      address is set to VAL.  Otherwise, VAL is added to or subtracted
  983.      from the section address.  See the comments under
  984.      `--change-addresses', above.  If SECTION does not exist in the
  985.      input file, a warning will be issued, unless
  986.      `--no-change-warnings' is used.
  987.  
  988. `--change-section-vma SECTION{=,+,-}VAL'
  989.      Set or change the VMA address of the named SECTION.  The VMA
  990.      address is the address where the section will be located once the
  991.      program has started executing.  Normally this is the same as the
  992.      LMA address, which is the address where the section will be loaded
  993.      into memory, but on some systems, especially those where a program
  994.      is held in ROM, the two can be different.  If `=' is used, the
  995.      section address is set to VAL.  Otherwise, VAL is added to or
  996.      subtracted from the section address.  See the comments under
  997.      `--change-addresses', above.  If SECTION does not exist in the
  998.      input file, a warning will be issued, unless
  999.      `--no-change-warnings' is used.
  1000.  
  1001. `--change-warnings'
  1002. `--adjust-warnings'
  1003.      If `--change-section-address' or `--change-section-lma' or
  1004.      `--change-section-vma' is used, and the named section does not
  1005.      exist, issue a warning.  This is the default.
  1006.  
  1007. `--no-change-warnings'
  1008. `--no-adjust-warnings'
  1009.      Do not issue a warning if `--change-section-address' or
  1010.      `--adjust-section-lma' or `--adjust-section-vma' is used, even if
  1011.      the named section does not exist.
  1012.  
  1013. `--set-section-flags SECTION=FLAGS'
  1014.      Set the flags for the named section.  The FLAGS argument is a
  1015.      comma separated string of flag names.  The recognized names are
  1016.      `alloc', `contents', `load', `noload', `readonly', `code', `data',
  1017.      `rom', `share', and `debug'.  You can set the `contents' flag for
  1018.      a section which does not have contents, but it is not meaningful
  1019.      to clear the `contents' flag of a section which does have
  1020.      contents-just remove the section instead.  Not all flags are
  1021.      meaningful for all object file formats.
  1022.  
  1023. `--add-section SECTIONNAME=FILENAME'
  1024.      Add a new section named SECTIONNAME while copying the file.  The
  1025.      contents of the new section are taken from the file FILENAME.  The
  1026.      size of the section will be the size of the file.  This option only
  1027.      works on file formats which can support sections with arbitrary
  1028.      names.
  1029.  
  1030. `--rename-section OLDNAME=NEWNAME[,FLAGS]'
  1031.      Rename a section from OLDNAME to NEWNAME, optionally changing the
  1032.      section's flags to FLAGS in the process.  This has the advantage
  1033.      over usng a linker script to perform the rename in that the output
  1034.      stays as an object file and does not become a linked executable.
  1035.  
  1036.      This option is particularly helpful when the input format is
  1037.      binary, since this will always create a section called .data.  If
  1038.      for example, you wanted instead to create a section called .rodata
  1039.      containing binary data you could use the following command line to
  1040.      achieve it:
  1041.  
  1042.             objcopy -I binary -O <output_format> -B <architecture> \
  1043.              --rename-section .data=.rodata,alloc,load,readonly,data,contents \
  1044.              <input_binary_file> <output_object_file>
  1045.  
  1046. `--change-leading-char'
  1047.      Some object file formats use special characters at the start of
  1048.      symbols.  The most common such character is underscore, which
  1049.      compilers often add before every symbol.  This option tells
  1050.      `objcopy' to change the leading character of every symbol when it
  1051.      converts between object file formats.  If the object file formats
  1052.      use the same leading character, this option has no effect.
  1053.      Otherwise, it will add a character, or remove a character, or
  1054.      change a character, as appropriate.
  1055.  
  1056. `--remove-leading-char'
  1057.      If the first character of a global symbol is a special symbol
  1058.      leading character used by the object file format, remove the
  1059.      character.  The most common symbol leading character is
  1060.      underscore.  This option will remove a leading underscore from all
  1061.      global symbols.  This can be useful if you want to link together
  1062.      objects of different file formats with different conventions for
  1063.      symbol names.  This is different from `--change-leading-char'
  1064.      because it always changes the symbol name when appropriate,
  1065.      regardless of the object file format of the output file.
  1066.  
  1067. `--srec-len=IVAL'
  1068.      Meaningful only for srec output.  Set the maximum length of the
  1069.      Srecords being produced to IVAL.  This length covers both address,
  1070.      data and crc fields.
  1071.  
  1072. `--srec-forceS3'
  1073.      Meaningful only for srec output.  Avoid generation of S1/S2
  1074.      records, creating S3-only record format.
  1075.  
  1076. `--redefine-sym OLD=NEW'
  1077.      Change the name of a symbol OLD, to NEW.  This can be useful when
  1078.      one is trying link two things together for which you have no
  1079.      source, and there are name collisions.
  1080.  
  1081. `--redefine-syms=FILENAME'
  1082.      Apply `--redefine-sym' to each symbol pair "OLD NEW" listed in the
  1083.      file FILENAME.  FILENAME is simply a flat file, with one symbol
  1084.      pair per line.  Line comments may be introduced by the hash
  1085.      character.  This option may be given more than once.
  1086.  
  1087. `--weaken'
  1088.      Change all global symbols in the file to be weak.  This can be
  1089.      useful when building an object which will be linked against other
  1090.      objects using the `-R' option to the linker.  This option is only
  1091.      effective when using an object file format which supports weak
  1092.      symbols.
  1093.  
  1094. `--keep-symbols=FILENAME'
  1095.      Apply `--keep-symbol' option to each symbol listed in the file
  1096.      FILENAME.  FILENAME is simply a flat file, with one symbol name
  1097.      per line.  Line comments may be introduced by the hash character.
  1098.      This option may be given more than once.
  1099.  
  1100. `--strip-symbols=FILENAME'
  1101.      Apply `--strip-symbol' option to each symbol listed in the file
  1102.      FILENAME.  FILENAME is simply a flat file, with one symbol name
  1103.      per line.  Line comments may be introduced by the hash character.
  1104.      This option may be given more than once.
  1105.  
  1106. `--strip-unneeded-symbols=FILENAME'
  1107.      Apply `--strip-unneeded-symbol' option to each symbol listed in
  1108.      the file FILENAME.  FILENAME is simply a flat file, with one
  1109.      symbol name per line.  Line comments may be introduced by the hash
  1110.      character.  This option may be given more than once.
  1111.  
  1112. `--keep-global-symbols=FILENAME'
  1113.      Apply `--keep-global-symbol' option to each symbol listed in the
  1114.      file FILENAME.  FILENAME is simply a flat file, with one symbol
  1115.      name per line.  Line comments may be introduced by the hash
  1116.      character.  This option may be given more than once.
  1117.  
  1118. `--localize-symbols=FILENAME'
  1119.      Apply `--localize-symbol' option to each symbol listed in the file
  1120.      FILENAME.  FILENAME is simply a flat file, with one symbol name
  1121.      per line.  Line comments may be introduced by the hash character.
  1122.      This option may be given more than once.
  1123.  
  1124. `--weaken-symbols=FILENAME'
  1125.      Apply `--weaken-symbol' option to each symbol listed in the file
  1126.      FILENAME.  FILENAME is simply a flat file, with one symbol name
  1127.      per line.  Line comments may be introduced by the hash character.
  1128.      This option may be given more than once.
  1129.  
  1130. `--alt-machine-code=INDEX'
  1131.      If the output architecture has alternate machine codes, use the
  1132.      INDEXth code instead of the default one.  This is useful in case a
  1133.      machine is assigned an official code and the tool-chain adopts the
  1134.      new code, but other applications still depend on the original code
  1135.      being used.
  1136.  
  1137. `--writable-text'
  1138.      Mark the output text as writable.  This option isn't meaningful
  1139.      for all object file formats.
  1140.  
  1141. `--readonly-text'
  1142.      Make the output text write protected.  This option isn't
  1143.      meaningful for all object file formats.
  1144.  
  1145. `--pure'
  1146.      Mark the output file as demand paged.  This option isn't
  1147.      meaningful for all object file formats.
  1148.  
  1149. `--impure'
  1150.      Mark the output file as impure.  This option isn't meaningful for
  1151.      all object file formats.
  1152.  
  1153. `--prefix-symbols=STRING'
  1154.      Prefix all symbols in the output file with STRING.
  1155.  
  1156. `--prefix-sections=STRING'
  1157.      Prefix all section names in the output file with STRING.
  1158.  
  1159. `--prefix-alloc-sections=STRING'
  1160.      Prefix all the names of all allocated sections in the output file
  1161.      with STRING.
  1162.  
  1163. `--add-gnu-debuglink=PATH-TO-FILE'
  1164.      Creates a .gnu_debuglink section which contains a reference to
  1165.      PATH-TO-FILE and adds it to the output file.
  1166.  
  1167. `--only-keep-debug'
  1168.      Strip a file, removing any sections that would be stripped by
  1169.      `--strip-debug' and leaving the debugging sections.
  1170.  
  1171.      The intention is that this option will be used in conjunction with
  1172.      `--add-gnu-debuglink' to create a two part executable.  One a
  1173.      stripped binary which will occupy less space in RAM and in a
  1174.      distribution and the second a debugging information file which is
  1175.      only needed if debugging abilities are required.  The suggested
  1176.      procedure to create these files is as follows:
  1177.  
  1178.        1. Link the executable as normal.  Assuming that is is called
  1179.           `foo' then...
  1180.  
  1181.        2. Run `objcopy --only-keep-debug foo foo.dbg' to create a file
  1182.           containing the debugging info.
  1183.  
  1184.        3. Run `objcopy --strip-debug foo' to create a stripped
  1185.           executable.
  1186.  
  1187.        4. Run `objcopy --add-gnu-debuglink=foo.dbg foo' to add a link
  1188.           to the debugging info into the stripped executable.
  1189.  
  1190.      Note - the choice of `.dbg' as an extension for the debug info
  1191.      file is arbitrary.  Also the `--only-keep-debug' step is optional.
  1192.      You could instead do this:
  1193.  
  1194.        1. Link the executable as normal.
  1195.  
  1196.        2. Copy `foo' to  `foo.full'
  1197.  
  1198.        3. Run `objcopy --strip-debug foo'
  1199.  
  1200.        4. Run `objcopy --add-gnu-debuglink=foo.full foo'
  1201.  
  1202.      ie the file pointed to by the `--add-gnu-debuglink' can be the
  1203.      full executable.  It does not have to be a file created by the
  1204.      `--only-keep-debug' switch.
  1205.  
  1206. `-V'
  1207. `--version'
  1208.      Show the version number of `objcopy'.
  1209.  
  1210. `-v'
  1211. `--verbose'
  1212.      Verbose output: list all object files modified.  In the case of
  1213.      archives, `objcopy -V' lists all members of the archive.
  1214.  
  1215. `--help'
  1216.      Show a summary of the options to `objcopy'.
  1217.  
  1218. `--info'
  1219.      Display a list showing all architectures and object formats
  1220.      available.
  1221.  
  1222. 
  1223. File: binutils.info,  Node: objdump,  Next: ranlib,  Prev: objcopy,  Up: Top
  1224.  
  1225. 4 objdump
  1226. *********
  1227.  
  1228.      objdump [`-a'|`--archive-headers']
  1229.              [`-b' BFDNAME|`--target=BFDNAME']
  1230.              [`-C'|`--demangle'[=STYLE] ]
  1231.              [`-d'|`--disassemble']
  1232.              [`-D'|`--disassemble-all']
  1233.              [`-z'|`--disassemble-zeroes']
  1234.              [`-EB'|`-EL'|`--endian='{big | little }]
  1235.              [`-f'|`--file-headers']
  1236.              [`--file-start-context']
  1237.              [`-g'|`--debugging']
  1238.              [`-e'|`--debugging-tags']
  1239.              [`-h'|`--section-headers'|`--headers']
  1240.              [`-i'|`--info']
  1241.              [`-j' SECTION|`--section='SECTION]
  1242.              [`-l'|`--line-numbers']
  1243.              [`-S'|`--source']
  1244.              [`-m' MACHINE|`--architecture='MACHINE]
  1245.              [`-M' OPTIONS|`--disassembler-options='OPTIONS]
  1246.              [`-p'|`--private-headers']
  1247.              [`-r'|`--reloc']
  1248.              [`-R'|`--dynamic-reloc']
  1249.              [`-s'|`--full-contents']
  1250.              [`-G'|`--stabs']
  1251.              [`-t'|`--syms']
  1252.              [`-T'|`--dynamic-syms']
  1253.              [`-x'|`--all-headers']
  1254.              [`-w'|`--wide']
  1255.              [`--start-address='ADDRESS]
  1256.              [`--stop-address='ADDRESS]
  1257.              [`--prefix-addresses']
  1258.              [`--[no-]show-raw-insn']
  1259.              [`--adjust-vma='OFFSET]
  1260.              [`--special-syms']
  1261.              [`-V'|`--version']
  1262.              [`-H'|`--help']
  1263.              OBJFILE...
  1264.  
  1265.    `objdump' displays information about one or more object files.  The
  1266. options control what particular information to display.  This
  1267. information is mostly useful to programmers who are working on the
  1268. compilation tools, as opposed to programmers who just want their
  1269. program to compile and work.
  1270.  
  1271.    OBJFILE... are the object files to be examined.  When you specify
  1272. archives, `objdump' shows information on each of the member object
  1273. files.
  1274.  
  1275.    The long and short forms of options, shown here as alternatives, are
  1276. equivalent.  At least one option from the list
  1277. `-a,-d,-D,-e,-f,-g,-G,-h,-H,-p,-r,-R,-s,-S,-t,-T,-V,-x' must be given.
  1278.  
  1279. `-a'
  1280. `--archive-header'
  1281.      If any of the OBJFILE files are archives, display the archive
  1282.      header information (in a format similar to `ls -l').  Besides the
  1283.      information you could list with `ar tv', `objdump -a' shows the
  1284.      object file format of each archive member.
  1285.  
  1286. `--adjust-vma=OFFSET'
  1287.      When dumping information, first add OFFSET to all the section
  1288.      addresses.  This is useful if the section addresses do not
  1289.      correspond to the symbol table, which can happen when putting
  1290.      sections at particular addresses when using a format which can not
  1291.      represent section addresses, such as a.out.
  1292.  
  1293. `-b BFDNAME'
  1294. `--target=BFDNAME'
  1295.      Specify that the object-code format for the object files is
  1296.      BFDNAME.  This option may not be necessary; OBJDUMP can
  1297.      automatically recognize many formats.
  1298.  
  1299.      For example,
  1300.           objdump -b oasys -m vax -h fu.o
  1301.      displays summary information from the section headers (`-h') of
  1302.      `fu.o', which is explicitly identified (`-m') as a VAX object file
  1303.      in the format produced by Oasys compilers.  You can list the
  1304.      formats available with the `-i' option.  *Note Target Selection::,
  1305.      for more information.
  1306.  
  1307. `-C'
  1308. `--demangle[=STYLE]'
  1309.      Decode ("demangle") low-level symbol names into user-level names.
  1310.      Besides removing any initial underscore prepended by the system,
  1311.      this makes C++ function names readable.  Different compilers have
  1312.      different mangling styles. The optional demangling style argument
  1313.      can be used to choose an appropriate demangling style for your
  1314.      compiler. *Note c++filt::, for more information on demangling.
  1315.  
  1316. `-g'
  1317. `--debugging'
  1318.      Display debugging information.  This attempts to parse debugging
  1319.      information stored in the file and print it out using a C like
  1320.      syntax.  Only certain types of debugging information have been
  1321.      implemented.  Some other types are supported by `readelf -w'.
  1322.      *Note readelf::.
  1323.  
  1324. `-e'
  1325. `--debugging-tags'
  1326.      Like `-g', but the information is generated in a format compatible
  1327.      with ctags tool.
  1328.  
  1329. `-d'
  1330. `--disassemble'
  1331.      Display the assembler mnemonics for the machine instructions from
  1332.      OBJFILE.  This option only disassembles those sections which are
  1333.      expected to contain instructions.
  1334.  
  1335. `-D'
  1336. `--disassemble-all'
  1337.      Like `-d', but disassemble the contents of all sections, not just
  1338.      those expected to contain instructions.
  1339.  
  1340. `--prefix-addresses'
  1341.      When disassembling, print the complete address on each line.  This
  1342.      is the older disassembly format.
  1343.  
  1344. `-EB'
  1345. `-EL'
  1346. `--endian={big|little}'
  1347.      Specify the endianness of the object files.  This only affects
  1348.      disassembly.  This can be useful when disassembling a file format
  1349.      which does not describe endianness information, such as S-records.
  1350.  
  1351. `-f'
  1352. `--file-headers'
  1353.      Display summary information from the overall header of each of the
  1354.      OBJFILE files.
  1355.  
  1356. `--file-start-context'
  1357.      Specify that when displaying interlisted source code/disassembly
  1358.      (assumes `-S') from a file that has not yet been displayed, extend
  1359.      the context to the start of the file.
  1360.  
  1361. `-h'
  1362. `--section-headers'
  1363. `--headers'
  1364.      Display summary information from the section headers of the object
  1365.      file.
  1366.  
  1367.      File segments may be relocated to nonstandard addresses, for
  1368.      example by using the `-Ttext', `-Tdata', or `-Tbss' options to
  1369.      `ld'.  However, some object file formats, such as a.out, do not
  1370.      store the starting address of the file segments.  In those
  1371.      situations, although `ld' relocates the sections correctly, using
  1372.      `objdump -h' to list the file section headers cannot show the
  1373.      correct addresses.  Instead, it shows the usual addresses, which
  1374.      are implicit for the target.
  1375.  
  1376. `-H'
  1377. `--help'
  1378.      Print a summary of the options to `objdump' and exit.
  1379.  
  1380. `-i'
  1381. `--info'
  1382.      Display a list showing all architectures and object formats
  1383.      available for specification with `-b' or `-m'.
  1384.  
  1385. `-j NAME'
  1386. `--section=NAME'
  1387.      Display information only for section NAME.
  1388.  
  1389. `-l'
  1390. `--line-numbers'
  1391.      Label the display (using debugging information) with the filename
  1392.      and source line numbers corresponding to the object code or relocs
  1393.      shown.  Only useful with `-d', `-D', or `-r'.
  1394.  
  1395. `-m MACHINE'
  1396. `--architecture=MACHINE'
  1397.      Specify the architecture to use when disassembling object files.
  1398.      This can be useful when disassembling object files which do not
  1399.      describe architecture information, such as S-records.  You can
  1400.      list the available architectures with the `-i' option.
  1401.  
  1402. `-M OPTIONS'
  1403. `--disassembler-options=OPTIONS'
  1404.      Pass target specific information to the disassembler.  Only
  1405.      supported on some targets.  If it is necessary to specify more
  1406.      than one disassembler option then multiple `-M' options can be
  1407.      used or can be placed together into a comma separated list.
  1408.  
  1409.      If the target is an ARM architecture then this switch can be used
  1410.      to select which register name set is used during disassembler.
  1411.      Specifying `-M reg-name-std' (the default) will select the
  1412.      register names as used in ARM's instruction set documentation, but
  1413.      with register 13 called 'sp', register 14 called 'lr' and register
  1414.      15 called 'pc'.  Specifying `-M reg-names-apcs' will select the
  1415.      name set used by the ARM Procedure Call Standard, whilst
  1416.      specifying `-M reg-names-raw' will just use `r' followed by the
  1417.      register number.
  1418.  
  1419.      There are also two variants on the APCS register naming scheme
  1420.      enabled by `-M reg-names-atpcs' and `-M reg-names-special-atpcs'
  1421.      which use the ARM/Thumb Procedure Call Standard naming
  1422.      conventions.  (Either with the normal register names or the
  1423.      special register names).
  1424.  
  1425.      This option can also be used for ARM architectures to force the
  1426.      disassembler to interpret all instructions as Thumb instructions by
  1427.      using the switch `--disassembler-options=force-thumb'.  This can be
  1428.      useful when attempting to disassemble thumb code produced by other
  1429.      compilers.
  1430.  
  1431.      For the x86, some of the options duplicate functions of the `-m'
  1432.      switch, but allow finer grained control.  Multiple selections from
  1433.      the following may be specified as a comma separated string.
  1434.      `x86-64', `i386' and `i8086' select disassembly for the given
  1435.      architecture.  `intel' and `att' select between intel syntax mode
  1436.      and AT&T syntax mode.  `addr32', `addr16', `data32' and `data16'
  1437.      specify the default address size and operand size.  These four
  1438.      options will be overridden if `x86-64', `i386' or `i8086' appear
  1439.      later in the option string.  Lastly, `suffix', when in AT&T mode,
  1440.      instructs the disassembler to print a mnemonic suffix even when the
  1441.      suffix could be inferred by the operands.
  1442.  
  1443.      For PPC, `booke', `booke32' and `booke64' select disassembly of
  1444.      BookE instructions.  `32' and `64' select PowerPC and PowerPC64
  1445.      disassembly, respectively.
  1446.  
  1447.      For MIPS, this option controls the printing of instruction
  1448.      mneumonic names and register names in disassembled instructions.
  1449.      Multiple selections from the following may be specified as a comma
  1450.      separated string, and invalid options are ignored:
  1451.  
  1452.     `no-aliases'
  1453.           Print the 'raw' instruction mneumonic instead of some pseudo
  1454.           instruction mneumonic.  I.E. print 'daddu' or 'or' instead of
  1455.           'move', 'sll' instead of 'nop', etc.
  1456.  
  1457.     `gpr-names=ABI'
  1458.           Print GPR (general-purpose register) names as appropriate for
  1459.           the specified ABI.  By default, GPR names are selected
  1460.           according to the ABI of the binary being disassembled.
  1461.  
  1462.     `fpr-names=ABI'
  1463.           Print FPR (floating-point register) names as appropriate for
  1464.           the specified ABI.  By default, FPR numbers are printed
  1465.           rather than names.
  1466.  
  1467.     `cp0-names=ARCH'
  1468.           Print CP0 (system control coprocessor; coprocessor 0)
  1469.           register names as appropriate for the CPU or architecture
  1470.           specified by ARCH.  By default, CP0 register names are
  1471.           selected according to the architecture and CPU of the binary
  1472.           being disassembled.
  1473.  
  1474.     `hwr-names=ARCH'
  1475.           Print HWR (hardware register, used by the `rdhwr'
  1476.           instruction) names as appropriate for the CPU or architecture
  1477.           specified by ARCH.  By default, HWR names are selected
  1478.           according to the architecture and CPU of the binary being
  1479.           disassembled.
  1480.  
  1481.     `reg-names=ABI'
  1482.           Print GPR and FPR names as appropriate for the selected ABI.
  1483.  
  1484.     `reg-names=ARCH'
  1485.           Print CPU-specific register names (CP0 register and HWR names)
  1486.           as appropriate for the selected CPU or architecture.
  1487.  
  1488.      For any of the options listed above, ABI or ARCH may be specified
  1489.      as `numeric' to have numbers printed rather than names, for the
  1490.      selected types of registers.  You can list the available values of
  1491.      ABI and ARCH using the `--help' option.
  1492.  
  1493. `-p'
  1494. `--private-headers'
  1495.      Print information that is specific to the object file format.  The
  1496.      exact information printed depends upon the object file format.
  1497.      For some object file formats, no additional information is printed.
  1498.  
  1499. `-r'
  1500. `--reloc'
  1501.      Print the relocation entries of the file.  If used with `-d' or
  1502.      `-D', the relocations are printed interspersed with the
  1503.      disassembly.
  1504.  
  1505. `-R'
  1506. `--dynamic-reloc'
  1507.      Print the dynamic relocation entries of the file.  This is only
  1508.      meaningful for dynamic objects, such as certain types of shared
  1509.      libraries.
  1510.  
  1511. `-s'
  1512. `--full-contents'
  1513.      Display the full contents of any sections requested.  By default
  1514.      all non-empty sections are displayed.
  1515.  
  1516. `-S'
  1517. `--source'
  1518.      Display source code intermixed with disassembly, if possible.
  1519.      Implies `-d'.
  1520.  
  1521. `--show-raw-insn'
  1522.      When disassembling instructions, print the instruction in hex as
  1523.      well as in symbolic form.  This is the default except when
  1524.      `--prefix-addresses' is used.
  1525.  
  1526. `--no-show-raw-insn'
  1527.      When disassembling instructions, do not print the instruction
  1528.      bytes.  This is the default when `--prefix-addresses' is used.
  1529.  
  1530. `-G'
  1531. `--stabs'
  1532.      Display the full contents of any sections requested.  Display the
  1533.      contents of the .stab and .stab.index and .stab.excl sections from
  1534.      an ELF file.  This is only useful on systems (such as Solaris 2.0)
  1535.      in which `.stab' debugging symbol-table entries are carried in an
  1536.      ELF section.  In most other file formats, debugging symbol-table
  1537.      entries are interleaved with linkage symbols, and are visible in
  1538.      the `--syms' output.  For more information on stabs symbols, see
  1539.      *Note Stabs: (stabs.info)Top.
  1540.  
  1541. `--start-address=ADDRESS'
  1542.      Start displaying data at the specified address.  This affects the
  1543.      output of the `-d', `-r' and `-s' options.
  1544.  
  1545. `--stop-address=ADDRESS'
  1546.      Stop displaying data at the specified address.  This affects the
  1547.      output of the `-d', `-r' and `-s' options.
  1548.  
  1549. `-t'
  1550. `--syms'
  1551.      Print the symbol table entries of the file.  This is similar to
  1552.      the information provided by the `nm' program.
  1553.  
  1554. `-T'
  1555. `--dynamic-syms'
  1556.      Print the dynamic symbol table entries of the file.  This is only
  1557.      meaningful for dynamic objects, such as certain types of shared
  1558.      libraries.  This is similar to the information provided by the `nm'
  1559.      program when given the `-D' (`--dynamic') option.
  1560.  
  1561. `--special-syms'
  1562.      When displaying symbols include those which the target considers
  1563.      to be special in some way and which would not normally be of
  1564.      interest to the user.
  1565.  
  1566. `-V'
  1567. `--version'
  1568.      Print the version number of `objdump' and exit.
  1569.  
  1570. `-x'
  1571. `--all-headers'
  1572.      Display all available header information, including the symbol
  1573.      table and relocation entries.  Using `-x' is equivalent to
  1574.      specifying all of `-a -f -h -p -r -t'.
  1575.  
  1576. `-w'
  1577. `--wide'
  1578.      Format some lines for output devices that have more than 80
  1579.      columns.  Also do not truncate symbol names when they are
  1580.      displayed.
  1581.  
  1582. `-z'
  1583. `--disassemble-zeroes'
  1584.      Normally the disassembly output will skip blocks of zeroes.  This
  1585.      option directs the disassembler to disassemble those blocks, just
  1586.      like any other data.
  1587.  
  1588. 
  1589. File: binutils.info,  Node: ranlib,  Next: readelf,  Prev: objdump,  Up: Top
  1590.  
  1591. 5 ranlib
  1592. ********
  1593.  
  1594.      ranlib [`-vV'] ARCHIVE
  1595.  
  1596.    `ranlib' generates an index to the contents of an archive and stores
  1597. it in the archive.  The index lists each symbol defined by a member of
  1598. an archive that is a relocatable object file.
  1599.  
  1600.    You may use `nm -s' or `nm --print-armap' to list this index.
  1601.  
  1602.    An archive with such an index speeds up linking to the library and
  1603. allows routines in the library to call each other without regard to
  1604. their placement in the archive.
  1605.  
  1606.    The GNU `ranlib' program is another form of GNU `ar'; running
  1607. `ranlib' is completely equivalent to executing `ar -s'.  *Note ar::.
  1608.  
  1609. `-v'
  1610. `-V'
  1611. `--version'
  1612.      Show the version number of `ranlib'.
  1613.  
  1614. 
  1615. File: binutils.info,  Node: size,  Next: strings,  Prev: readelf,  Up: Top
  1616.  
  1617. 6 size
  1618. ******
  1619.  
  1620.      size [`-A'|`-B'|`--format='COMPATIBILITY]
  1621.           [`--help']
  1622.           [`-d'|`-o'|`-x'|`--radix='NUMBER]
  1623.           [`-t'|`--totals']
  1624.           [`--target='BFDNAME] [`-V'|`--version']
  1625.           [OBJFILE...]
  1626.  
  1627.    The GNU `size' utility lists the section sizes--and the total
  1628. size--for each of the object or archive files OBJFILE in its argument
  1629. list.  By default, one line of output is generated for each object file
  1630. or each module in an archive.
  1631.  
  1632.    OBJFILE... are the object files to be examined.  If none are
  1633. specified, the file `a.out' will be used.
  1634.  
  1635.    The command line options have the following meanings:
  1636.  
  1637. `-A'
  1638. `-B'
  1639. `--format=COMPATIBILITY'
  1640.      Using one of these options, you can choose whether the output from
  1641.      GNU `size' resembles output from System V `size' (using `-A', or
  1642.      `--format=sysv'), or Berkeley `size' (using `-B', or
  1643.      `--format=berkeley').  The default is the one-line format similar
  1644.      to Berkeley's.
  1645.  
  1646.      Here is an example of the Berkeley (default) format of output from
  1647.      `size':
  1648.           $ size --format=Berkeley ranlib size
  1649.           text    data    bss     dec     hex     filename
  1650.           294880  81920   11592   388392  5ed28   ranlib
  1651.           294880  81920   11888   388688  5ee50   size
  1652.  
  1653.      This is the same data, but displayed closer to System V
  1654.      conventions:
  1655.  
  1656.           $ size --format=SysV ranlib size
  1657.           ranlib  :
  1658.           section         size         addr
  1659.           .text         294880         8192
  1660.           .data          81920       303104
  1661.           .bss           11592       385024
  1662.           Total         388392
  1663.  
  1664.  
  1665.           size  :
  1666.           section         size         addr
  1667.           .text         294880         8192
  1668.           .data          81920       303104
  1669.           .bss           11888       385024
  1670.           Total         388688
  1671.  
  1672. `--help'
  1673.      Show a summary of acceptable arguments and options.
  1674.  
  1675. `-d'
  1676. `-o'
  1677. `-x'
  1678. `--radix=NUMBER'
  1679.      Using one of these options, you can control whether the size of
  1680.      each section is given in decimal (`-d', or `--radix=10'); octal
  1681.      (`-o', or `--radix=8'); or hexadecimal (`-x', or `--radix=16').
  1682.      In `--radix=NUMBER', only the three values (8, 10, 16) are
  1683.      supported.  The total size is always given in two radices; decimal
  1684.      and hexadecimal for `-d' or `-x' output, or octal and hexadecimal
  1685.      if you're using `-o'.
  1686.  
  1687. `-t'
  1688. `--totals'
  1689.      Show totals of all objects listed (Berkeley format listing mode
  1690.      only).
  1691.  
  1692. `--target=BFDNAME'
  1693.      Specify that the object-code format for OBJFILE is BFDNAME.  This
  1694.      option may not be necessary; `size' can automatically recognize
  1695.      many formats.  *Note Target Selection::, for more information.
  1696.  
  1697. `-V'
  1698. `--version'
  1699.      Display the version number of `size'.
  1700.  
  1701. 
  1702. File: binutils.info,  Node: strings,  Next: strip,  Prev: size,  Up: Top
  1703.  
  1704. 7 strings
  1705. *********
  1706.  
  1707.      strings [`-afov'] [`-'MIN-LEN]
  1708.              [`-n' MIN-LEN] [`--bytes='MIN-LEN]
  1709.              [`-t' RADIX] [`--radix='RADIX]
  1710.              [`-e' ENCODING] [`--encoding='ENCODING]
  1711.              [`-'] [`--all'] [`--print-file-name']
  1712.              [`--target='BFDNAME]
  1713.              [`--help'] [`--version'] FILE...
  1714.  
  1715.    For each FILE given, GNU `strings' prints the printable character
  1716. sequences that are at least 4 characters long (or the number given with
  1717. the options below) and are followed by an unprintable character.  By
  1718. default, it only prints the strings from the initialized and loaded
  1719. sections of object files; for other types of files, it prints the
  1720. strings from the whole file.
  1721.  
  1722.    `strings' is mainly useful for determining the contents of non-text
  1723. files.
  1724.  
  1725. `-a'
  1726. `--all'
  1727. `-'
  1728.      Do not scan only the initialized and loaded sections of object
  1729.      files; scan the whole files.
  1730.  
  1731. `-f'
  1732. `--print-file-name'
  1733.      Print the name of the file before each string.
  1734.  
  1735. `--help'
  1736.      Print a summary of the program usage on the standard output and
  1737.      exit.
  1738.  
  1739. `-MIN-LEN'
  1740. `-n MIN-LEN'
  1741. `--bytes=MIN-LEN'
  1742.      Print sequences of characters that are at least MIN-LEN characters
  1743.      long, instead of the default 4.
  1744.  
  1745. `-o'
  1746.      Like `-t o'.  Some other versions of `strings' have `-o' act like
  1747.      `-t d' instead.  Since we can not be compatible with both ways, we
  1748.      simply chose one.
  1749.  
  1750. `-t RADIX'
  1751. `--radix=RADIX'
  1752.      Print the offset within the file before each string.  The single
  1753.      character argument specifies the radix of the offset--`o' for
  1754.      octal, `x' for hexadecimal, or `d' for decimal.
  1755.  
  1756. `-e ENCODING'
  1757. `--encoding=ENCODING'
  1758.      Select the character encoding of the strings that are to be found.
  1759.      Possible values for ENCODING are: `s' = single-7-bit-byte
  1760.      characters (ASCII, ISO 8859, etc., default), `S' =
  1761.      single-8-bit-byte characters, `b' = 16-bit bigendian, `l' = 16-bit
  1762.      littleendian, `B' = 32-bit bigendian, `L' = 32-bit littleendian.
  1763.      Useful for finding wide character strings.
  1764.  
  1765. `--target=BFDNAME'
  1766.      Specify an object code format other than your system's default
  1767.      format.  *Note Target Selection::, for more information.
  1768.  
  1769. `-v'
  1770. `--version'
  1771.      Print the program version number on the standard output and exit.
  1772.  
  1773. 
  1774. File: binutils.info,  Node: strip,  Next: c++filt,  Prev: strings,  Up: Top
  1775.  
  1776. 8 strip
  1777. *******
  1778.  
  1779.      strip [`-F' BFDNAME |`--target='BFDNAME]
  1780.            [`-I' BFDNAME |`--input-target='BFDNAME]
  1781.            [`-O' BFDNAME |`--output-target='BFDNAME]
  1782.            [`-s'|`--strip-all']
  1783.            [`-S'|`-g'|`-d'|`--strip-debug']
  1784.            [`-K' SYMBOLNAME |`--keep-symbol='SYMBOLNAME]
  1785.            [`-N' SYMBOLNAME |`--strip-symbol='SYMBOLNAME]
  1786.            [`-w'|`--wildcard']
  1787.            [`-x'|`--discard-all'] [`-X' |`--discard-locals']
  1788.            [`-R' SECTIONNAME |`--remove-section='SECTIONNAME]
  1789.            [`-o' FILE] [`-p'|`--preserve-dates']
  1790.            [`--only-keep-debug']
  1791.            [`-v' |`--verbose'] [`-V'|`--version']
  1792.            [`--help'] [`--info']
  1793.            OBJFILE...
  1794.  
  1795.    GNU `strip' discards all symbols from object files OBJFILE.  The
  1796. list of object files may include archives.  At least one object file
  1797. must be given.
  1798.  
  1799.    `strip' modifies the files named in its argument, rather than
  1800. writing modified copies under different names.
  1801.  
  1802. `-F BFDNAME'
  1803. `--target=BFDNAME'
  1804.      Treat the original OBJFILE as a file with the object code format
  1805.      BFDNAME, and rewrite it in the same format.  *Note Target
  1806.      Selection::, for more information.
  1807.  
  1808. `--help'
  1809.      Show a summary of the options to `strip' and exit.
  1810.  
  1811. `--info'
  1812.      Display a list showing all architectures and object formats
  1813.      available.
  1814.  
  1815. `-I BFDNAME'
  1816. `--input-target=BFDNAME'
  1817.      Treat the original OBJFILE as a file with the object code format
  1818.      BFDNAME.  *Note Target Selection::, for more information.
  1819.  
  1820. `-O BFDNAME'
  1821. `--output-target=BFDNAME'
  1822.      Replace OBJFILE with a file in the output format BFDNAME.  *Note
  1823.      Target Selection::, for more information.
  1824.  
  1825. `-R SECTIONNAME'
  1826. `--remove-section=SECTIONNAME'
  1827.      Remove any section named SECTIONNAME from the output file.  This
  1828.      option may be given more than once.  Note that using this option
  1829.      inappropriately may make the output file unusable.
  1830.  
  1831. `-s'
  1832. `--strip-all'
  1833.      Remove all symbols.
  1834.  
  1835. `-g'
  1836. `-S'
  1837. `-d'
  1838. `--strip-debug'
  1839.      Remove debugging symbols only.
  1840.  
  1841. `--strip-unneeded'
  1842.      Remove all symbols that are not needed for relocation processing.
  1843.  
  1844. `-K SYMBOLNAME'
  1845. `--keep-symbol=SYMBOLNAME'
  1846.      Keep only symbol SYMBOLNAME from the source file.  This option may
  1847.      be given more than once.
  1848.  
  1849. `-N SYMBOLNAME'
  1850. `--strip-symbol=SYMBOLNAME'
  1851.      Remove symbol SYMBOLNAME from the source file. This option may be
  1852.      given more than once, and may be combined with strip options other
  1853.      than `-K'.
  1854.  
  1855. `-o FILE'
  1856.      Put the stripped output in FILE, rather than replacing the
  1857.      existing file.  When this argument is used, only one OBJFILE
  1858.      argument may be specified.
  1859.  
  1860. `-p'
  1861. `--preserve-dates'
  1862.      Preserve the access and modification dates of the file.
  1863.  
  1864. `-w'
  1865. `--wildcard'
  1866.      Permit regular expressions in SYMBOLNAMEs used in other command
  1867.      line options.  The question mark (?), asterisk (*), backslash (\)
  1868.      and square brackets ([]) operators can be used anywhere in the
  1869.      symbol name.  If the first character of the symbol name is the
  1870.      exclamation point (!) then the sense of the switch is reversed for
  1871.      that symbol.  For example:
  1872.  
  1873.             -w -K !foo -K fo*
  1874.  
  1875.      would cause strip to only keep symbols that start with the letters
  1876.      "fo", but to discard the symbol "foo".
  1877.  
  1878. `-x'
  1879. `--discard-all'
  1880.      Remove non-global symbols.
  1881.  
  1882. `-X'
  1883. `--discard-locals'
  1884.      Remove compiler-generated local symbols.  (These usually start
  1885.      with `L' or `.'.)
  1886.  
  1887. `--only-keep-debug'
  1888.      Strip a file, removing any sections that would be stripped by
  1889.      `--strip-debug' and leaving the debugging sections.
  1890.  
  1891.      The intention is that this option will be used in conjunction with
  1892.      `--add-gnu-debuglink' to create a two part executable.  One a
  1893.      stripped binary which will occupy less space in RAM and in a
  1894.      distribution and the second a debugging information file which is
  1895.      only needed if debugging abilities are required.  The suggested
  1896.      procedure to create these files is as follows:
  1897.  
  1898.        1. Link the executable as normal.  Assuming that is is called
  1899.           `foo' then...
  1900.  
  1901.        2. Run `objcopy --only-keep-debug foo foo.dbg' to create a file
  1902.           containing the debugging info.
  1903.  
  1904.        3. Run `objcopy --strip-debug foo' to create a stripped
  1905.           executable.
  1906.  
  1907.        4. Run `objcopy --add-gnu-debuglink=foo.dbg foo' to add a link
  1908.           to the debugging info into the stripped executable.
  1909.  
  1910.      Note - the choice of `.dbg' as an extension for the debug info
  1911.      file is arbitrary.  Also the `--only-keep-debug' step is optional.
  1912.      You could instead do this:
  1913.  
  1914.        1. Link the executable as normal.
  1915.  
  1916.        2. Copy `foo' to  `foo.full'
  1917.  
  1918.        3. Run `strip --strip-debug foo'
  1919.  
  1920.        4. Run `objcopy --add-gnu-debuglink=foo.full foo'
  1921.  
  1922.      ie the file pointed to by the `--add-gnu-debuglink' can be the
  1923.      full executable.  It does not have to be a file created by the
  1924.      `--only-keep-debug' switch.
  1925.  
  1926. `-V'
  1927. `--version'
  1928.      Show the version number for `strip'.
  1929.  
  1930. `-v'
  1931. `--verbose'
  1932.      Verbose output: list all object files modified.  In the case of
  1933.      archives, `strip -v' lists all members of the archive.
  1934.  
  1935. 
  1936. File: binutils.info,  Node: c++filt,  Next: addr2line,  Prev: strip,  Up: Top
  1937.  
  1938. 9 c++filt
  1939. *********
  1940.  
  1941.      c++filt [`-_'|`--strip-underscores']
  1942.              [`-j'|`--java']
  1943.              [`-n'|`--no-strip-underscores']
  1944.              [`-p'|`--no-params']
  1945.              [`-s' FORMAT|`--format='FORMAT]
  1946.              [`--help']  [`--version']  [SYMBOL...]
  1947.  
  1948.    The C++ and Java languages provides function overloading, which means
  1949. that you can write many functions with the same name (providing each
  1950. takes parameters of different types).  All C++ and Java function names
  1951. are encoded into a low-level assembly label (this process is known as
  1952. "mangling"). The `c++filt' (1) program does the inverse mapping: it
  1953. decodes ("demangles") low-level names into user-level names so that the
  1954. linker can keep these overloaded functions from clashing.
  1955.  
  1956.    Every alphanumeric word (consisting of letters, digits, underscores,
  1957. dollars, or periods) seen in the input is a potential label.  If the
  1958. label decodes into a C++ name, the C++ name replaces the low-level name
  1959. in the output.
  1960.  
  1961.    You can use `c++filt' to decipher individual symbols:
  1962.  
  1963.      c++filt SYMBOL
  1964.  
  1965.    If no SYMBOL arguments are given, `c++filt' reads symbol names from
  1966. the standard input and writes the demangled names to the standard
  1967. output.  All results are printed on the standard output.
  1968.  
  1969. `-_'
  1970. `--strip-underscores'
  1971.      On some systems, both the C and C++ compilers put an underscore in
  1972.      front of every name.  For example, the C name `foo' gets the
  1973.      low-level name `_foo'.  This option removes the initial
  1974.      underscore.  Whether `c++filt' removes the underscore by default
  1975.      is target dependent.
  1976.  
  1977. `-j'
  1978. `--java'
  1979.      Prints demangled names using Java syntax.  The default is to use
  1980.      C++ syntax.
  1981.  
  1982. `-n'
  1983. `--no-strip-underscores'
  1984.      Do not remove the initial underscore.
  1985.  
  1986. `-p'
  1987. `--no-params'
  1988.      When demangling the name of a function, do not display the types of
  1989.      the function's parameters.
  1990.  
  1991. `-s FORMAT'
  1992. `--format=FORMAT'
  1993.      `c++filt' can decode various methods of mangling, used by
  1994.      different compilers.  The argument to this option selects which
  1995.      method it uses:
  1996.  
  1997.     `auto'
  1998.           Automatic selection based on executable (the default method)
  1999.  
  2000.     `gnu'
  2001.           the one used by the GNU C++ compiler (g++)
  2002.  
  2003.     `lucid'
  2004.           the one used by the Lucid compiler (lcc)
  2005.  
  2006.     `arm'
  2007.           the one specified by the C++ Annotated Reference Manual
  2008.  
  2009.     `hp'
  2010.           the one used by the HP compiler (aCC)
  2011.  
  2012.     `edg'
  2013.           the one used by the EDG compiler
  2014.  
  2015.     `gnu-v3'
  2016.           the one used by the GNU C++ compiler (g++) with the V3 ABI.
  2017.  
  2018.     `java'
  2019.           the one used by the GNU Java compiler (gcj)
  2020.  
  2021.     `gnat'
  2022.           the one used by the GNU Ada compiler (GNAT).
  2023.  
  2024. `--help'
  2025.      Print a summary of the options to `c++filt' and exit.
  2026.  
  2027. `--version'
  2028.      Print the version number of `c++filt' and exit.
  2029.  
  2030.      _Warning:_ `c++filt' is a new utility, and the details of its user
  2031.      interface are subject to change in future releases.  In particular,
  2032.      a command-line option may be required in the the future to decode
  2033.      a name passed as an argument on the command line; in other words,
  2034.  
  2035.           c++filt SYMBOL
  2036.  
  2037.      may in a future release become
  2038.  
  2039.           c++filt OPTION SYMBOL
  2040.  
  2041.    ---------- Footnotes ----------
  2042.  
  2043.    (1) MS-DOS does not allow `+' characters in file names, so on MS-DOS
  2044. this program is named `CXXFILT'.
  2045.  
  2046. 
  2047. File: binutils.info,  Node: addr2line,  Next: nlmconv,  Prev: c++filt,  Up: Top
  2048.  
  2049. 10 addr2line
  2050. ************
  2051.  
  2052.      addr2line [`-b' BFDNAME|`--target='BFDNAME]
  2053.                [`-C'|`--demangle'[=STYLE]]
  2054.                [`-e' FILENAME|`--exe='FILENAME]
  2055.                [`-f'|`--functions'] [`-s'|`--basename']
  2056.                [`-H'|`--help'] [`-V'|`--version']
  2057.                [addr addr ...]
  2058.  
  2059.    `addr2line' translates program addresses into file names and line
  2060. numbers.  Given an address and an executable, it uses the debugging
  2061. information in the executable to figure out which file name and line
  2062. number are associated with a given address.
  2063.  
  2064.    The executable to use is specified with the `-e' option.  The
  2065. default is the file `a.out'.
  2066.  
  2067.    `addr2line' has two modes of operation.
  2068.  
  2069.    In the first, hexadecimal addresses are specified on the command
  2070. line, and `addr2line' displays the file name and line number for each
  2071. address.
  2072.  
  2073.    In the second, `addr2line' reads hexadecimal addresses from standard
  2074. input, and prints the file name and line number for each address on
  2075. standard output.  In this mode, `addr2line' may be used in a pipe to
  2076. convert dynamically chosen addresses.
  2077.  
  2078.    The format of the output is `FILENAME:LINENO'.  The file name and
  2079. line number for each address is printed on a separate line.  If the
  2080. `-f' option is used, then each `FILENAME:LINENO' line is preceded by a
  2081. `FUNCTIONNAME' line which is the name of the function containing the
  2082. address.
  2083.  
  2084.    If the file name or function name can not be determined, `addr2line'
  2085. will print two question marks in their place.  If the line number can
  2086. not be determined, `addr2line' will print 0.
  2087.  
  2088.    The long and short forms of options, shown here as alternatives, are
  2089. equivalent.
  2090.  
  2091. `-b BFDNAME'
  2092. `--target=BFDNAME'
  2093.      Specify that the object-code format for the object files is
  2094.      BFDNAME.
  2095.  
  2096. `-C'
  2097. `--demangle[=STYLE]'
  2098.      Decode ("demangle") low-level symbol names into user-level names.
  2099.      Besides removing any initial underscore prepended by the system,
  2100.      this makes C++ function names readable.  Different compilers have
  2101.      different mangling styles. The optional demangling style argument
  2102.      can be used to choose an appropriate demangling style for your
  2103.      compiler. *Note c++filt::, for more information on demangling.
  2104.  
  2105. `-e FILENAME'
  2106. `--exe=FILENAME'
  2107.      Specify the name of the executable for which addresses should be
  2108.      translated.  The default file is `a.out'.
  2109.  
  2110. `-f'
  2111. `--functions'
  2112.      Display function names as well as file and line number information.
  2113.  
  2114. `-s'
  2115. `--basenames'
  2116.      Display only the base of each file name.
  2117.  
  2118. 
  2119. File: binutils.info,  Node: nlmconv,  Next: windres,  Prev: addr2line,  Up: Top
  2120.  
  2121. 11 nlmconv
  2122. **********
  2123.  
  2124. `nlmconv' converts a relocatable object file into a NetWare Loadable
  2125. Module.
  2126.  
  2127.      _Warning:_ `nlmconv' is not always built as part of the binary
  2128.      utilities, since it is only useful for NLM targets.
  2129.  
  2130.      nlmconv [`-I' BFDNAME|`--input-target='BFDNAME]
  2131.              [`-O' BFDNAME|`--output-target='BFDNAME]
  2132.              [`-T' HEADERFILE|`--header-file='HEADERFILE]
  2133.              [`-d'|`--debug'] [`-l' LINKER|`--linker='LINKER]
  2134.              [`-h'|`--help'] [`-V'|`--version']
  2135.              INFILE OUTFILE
  2136.  
  2137.    `nlmconv' converts the relocatable `i386' object file INFILE into
  2138. the NetWare Loadable Module OUTFILE, optionally reading HEADERFILE for
  2139. NLM header information.  For instructions on writing the NLM command
  2140. file language used in header files, see the `linkers' section,
  2141. `NLMLINK' in particular, of the `NLM Development and Tools Overview',
  2142. which is part of the NLM Software Developer's Kit ("NLM SDK"),
  2143. available from Novell, Inc.  `nlmconv' uses the GNU Binary File
  2144. Descriptor library to read INFILE; see *Note BFD: (ld.info)BFD, for
  2145. more information.
  2146.  
  2147.    `nlmconv' can perform a link step.  In other words, you can list
  2148. more than one object file for input if you list them in the definitions
  2149. file (rather than simply specifying one input file on the command line).
  2150. In this case, `nlmconv' calls the linker for you.
  2151.  
  2152. `-I BFDNAME'
  2153. `--input-target=BFDNAME'
  2154.      Object format of the input file.  `nlmconv' can usually determine
  2155.      the format of a given file (so no default is necessary).  *Note
  2156.      Target Selection::, for more information.
  2157.  
  2158. `-O BFDNAME'
  2159. `--output-target=BFDNAME'
  2160.      Object format of the output file.  `nlmconv' infers the output
  2161.      format based on the input format, e.g. for a `i386' input file the
  2162.      output format is `nlm32-i386'.  *Note Target Selection::, for more
  2163.      information.
  2164.  
  2165. `-T HEADERFILE'
  2166. `--header-file=HEADERFILE'
  2167.      Reads HEADERFILE for NLM header information.  For instructions on
  2168.      writing the NLM command file language used in header files, see
  2169.      see the `linkers' section, of the `NLM Development and Tools
  2170.      Overview', which is part of the NLM Software Developer's Kit,
  2171.      available from Novell, Inc.
  2172.  
  2173. `-d'
  2174. `--debug'
  2175.      Displays (on standard error) the linker command line used by
  2176.      `nlmconv'.
  2177.  
  2178. `-l LINKER'
  2179. `--linker=LINKER'
  2180.      Use LINKER for any linking.  LINKER can be an absolute or a
  2181.      relative pathname.
  2182.  
  2183. `-h'
  2184. `--help'
  2185.      Prints a usage summary.
  2186.  
  2187. `-V'
  2188. `--version'
  2189.      Prints the version number for `nlmconv'.
  2190.  
  2191. 
  2192. File: binutils.info,  Node: windres,  Next: dlltool,  Prev: nlmconv,  Up: Top
  2193.  
  2194. 12 windres
  2195. **********
  2196.  
  2197. `windres' may be used to manipulate Windows resources.
  2198.  
  2199.      _Warning:_ `windres' is not always built as part of the binary
  2200.      utilities, since it is only useful for Windows targets.
  2201.  
  2202.      windres [options] [input-file] [output-file]
  2203.  
  2204.    `windres' reads resources from an input file and copies them into an
  2205. output file.  Either file may be in one of three formats:
  2206.  
  2207. `rc'
  2208.      A text format read by the Resource Compiler.
  2209.  
  2210. `res'
  2211.      A binary format generated by the Resource Compiler.
  2212.  
  2213. `coff'
  2214.      A COFF object or executable.
  2215.  
  2216.    The exact description of these different formats is available in
  2217. documentation from Microsoft.
  2218.  
  2219.    When `windres' converts from the `rc' format to the `res' format, it
  2220. is acting like the Windows Resource Compiler.  When `windres' converts
  2221. from the `res' format to the `coff' format, it is acting like the
  2222. Windows `CVTRES' program.
  2223.  
  2224.    When `windres' generates an `rc' file, the output is similar but not
  2225. identical to the format expected for the input.  When an input `rc'
  2226. file refers to an external filename, an output `rc' file will instead
  2227. include the file contents.
  2228.  
  2229.    If the input or output format is not specified, `windres' will guess
  2230. based on the file name, or, for the input file, the file contents.  A
  2231. file with an extension of `.rc' will be treated as an `rc' file, a file
  2232. with an extension of `.res' will be treated as a `res' file, and a file
  2233. with an extension of `.o' or `.exe' will be treated as a `coff' file.
  2234.  
  2235.    If no output file is specified, `windres' will print the resources
  2236. in `rc' format to standard output.
  2237.  
  2238.    The normal use is for you to write an `rc' file, use `windres' to
  2239. convert it to a COFF object file, and then link the COFF file into your
  2240. application.  This will make the resources described in the `rc' file
  2241. available to Windows.
  2242.  
  2243. `-i FILENAME'
  2244. `--input FILENAME'
  2245.      The name of the input file.  If this option is not used, then
  2246.      `windres' will use the first non-option argument as the input file
  2247.      name.  If there are no non-option arguments, then `windres' will
  2248.      read from standard input.  `windres' can not read a COFF file from
  2249.      standard input.
  2250.  
  2251. `-o FILENAME'
  2252. `--output FILENAME'
  2253.      The name of the output file.  If this option is not used, then
  2254.      `windres' will use the first non-option argument, after any used
  2255.      for the input file name, as the output file name.  If there is no
  2256.      non-option argument, then `windres' will write to standard output.
  2257.      `windres' can not write a COFF file to standard output.  Note, for
  2258.      compatability with `rc' the option `-fo' is also accepted, but its
  2259.      use is not recommended.
  2260.  
  2261. `-J FORMAT'
  2262. `--input-format FORMAT'
  2263.      The input format to read.  FORMAT may be `res', `rc', or `coff'.
  2264.      If no input format is specified, `windres' will guess, as
  2265.      described above.
  2266.  
  2267. `-O FORMAT'
  2268. `--output-format FORMAT'
  2269.      The output format to generate.  FORMAT may be `res', `rc', or
  2270.      `coff'.  If no output format is specified, `windres' will guess,
  2271.      as described above.
  2272.  
  2273. `-F TARGET'
  2274. `--target TARGET'
  2275.      Specify the BFD format to use for a COFF file as input or output.
  2276.      This is a BFD target name; you can use the `--help' option to see
  2277.      a list of supported targets.  Normally `windres' will use the
  2278.      default format, which is the first one listed by the `--help'
  2279.      option.  *Note Target Selection::.
  2280.  
  2281. `--preprocessor PROGRAM'
  2282.      When `windres' reads an `rc' file, it runs it through the C
  2283.      preprocessor first.  This option may be used to specify the
  2284.      preprocessor to use, including any leading arguments.  The default
  2285.      preprocessor argument is `gcc -E -xc-header -DRC_INVOKED'.
  2286.  
  2287. `-I DIRECTORY'
  2288. `--include-dir DIRECTORY'
  2289.      Specify an include directory to use when reading an `rc' file.
  2290.      `windres' will pass this to the preprocessor as an `-I' option.
  2291.      `windres' will also search this directory when looking for files
  2292.      named in the `rc' file.  If the argument passed to this command
  2293.      matches any of the supported FORMATS (as descrived in the `-J'
  2294.      option), it will issue a deprecation warning, and behave just like
  2295.      the `-J' option.  New programs should not use this behaviour.  If a
  2296.      directory happens to match a FORMAT, simple prefix it with `./' to
  2297.      disable the backward compatibility.
  2298.  
  2299. `-D TARGET'
  2300. `--define SYM[=VAL]'
  2301.      Specify a `-D' option to pass to the preprocessor when reading an
  2302.      `rc' file.
  2303.  
  2304. `-U TARGET'
  2305. `--undefine SYM'
  2306.      Specify a `-U' option to pass to the preprocessor when reading an
  2307.      `rc' file.
  2308.  
  2309. `-r'
  2310.      Ignored for compatibility with rc.
  2311.  
  2312. `-v'
  2313.      Enable verbose mode.  This tells you what the preprocessor is if
  2314.      you didn't specify one.
  2315.  
  2316. `-l VAL'
  2317.  
  2318. `--language VAL'
  2319.      Specify the default language to use when reading an `rc' file.
  2320.      VAL should be a hexadecimal language code.  The low eight bits are
  2321.      the language, and the high eight bits are the sublanguage.
  2322.  
  2323. `--use-temp-file'
  2324.      Use a temporary file to instead of using popen to read the output
  2325.      of the preprocessor. Use this option if the popen implementation
  2326.      is buggy on the host (eg., certain non-English language versions
  2327.      of Windows 95 and Windows 98 are known to have buggy popen where
  2328.      the output will instead go the console).
  2329.  
  2330. `--no-use-temp-file'
  2331.      Use popen, not a temporary file, to read the output of the
  2332.      preprocessor.  This is the default behaviour.
  2333.  
  2334. `-h'
  2335.  
  2336. `--help'
  2337.      Prints a usage summary.
  2338.  
  2339. `-V'
  2340.  
  2341. `--version'
  2342.      Prints the version number for `windres'.
  2343.  
  2344. `--yydebug'
  2345.      If `windres' is compiled with `YYDEBUG' defined as `1', this will
  2346.      turn on parser debugging.
  2347.  
  2348. 
  2349. File: binutils.info,  Node: dlltool,  Next: Selecting The Target System,  Prev: windres,  Up: Top
  2350.  
  2351. 13 dlltool
  2352. **********
  2353.  
  2354. `dlltool' is used to create the files needed to create dynamic link
  2355. libraries (DLLs) on systems which understand PE format image files such
  2356. as Windows.  A DLL contains an export table which contains information
  2357. that the runtime loader needs to resolve references from a referencing
  2358. program.
  2359.  
  2360.    The export table is generated by this program by reading in a `.def'
  2361. file or scanning the `.a' and `.o' files which will be in the DLL.  A
  2362. `.o' file can contain information in special `.drectve' sections with
  2363. export information.
  2364.  
  2365.      _Note:_ `dlltool' is not always built as part of the binary
  2366.      utilities, since it is only useful for those targets which support
  2367.      DLLs.
  2368.  
  2369.      dlltool [`-d'|`--input-def' DEF-FILE-NAME]
  2370.              [`-b'|`--base-file' BASE-FILE-NAME]
  2371.              [`-e'|`--output-exp' EXPORTS-FILE-NAME]
  2372.              [`-z'|`--output-def' DEF-FILE-NAME]
  2373.              [`-l'|`--output-lib' LIBRARY-FILE-NAME]
  2374.              [`--export-all-symbols'] [`--no-export-all-symbols']
  2375.              [`--exclude-symbols' LIST]
  2376.              [`--no-default-excludes']
  2377.              [`-S'|`--as' PATH-TO-ASSEMBLER] [`-f'|`--as-flags' OPTIONS]
  2378.              [`-D'|`--dllname' NAME] [`-m'|`--machine' MACHINE]
  2379.              [`-a'|`--add-indirect'] [`-U'|`--add-underscore'] [`-k'|`--kill-at']
  2380.              [`-A'|`--add-stdcall-alias']
  2381.              [`-p'|`--ext-prefix-alias' PREFIX]
  2382.              [`-x'|`--no-idata4'] [`-c'|`--no-idata5'] [`-i'|`--interwork']
  2383.              [`-n'|`--nodelete'] [`-t'|`--temp-prefix' PREFIX]
  2384.              [`-v'|`--verbose']
  2385.              [`-h'|`--help'] [`-V'|`--version']
  2386.              [object-file ...]
  2387.  
  2388.    `dlltool' reads its inputs, which can come from the `-d' and `-b'
  2389. options as well as object files specified on the command line.  It then
  2390. processes these inputs and if the `-e' option has been specified it
  2391. creates a exports file.  If the `-l' option has been specified it
  2392. creates a library file and if the `-z' option has been specified it
  2393. creates a def file.  Any or all of the `-e', `-l' and `-z' options can
  2394. be present in one invocation of dlltool.
  2395.  
  2396.    When creating a DLL, along with the source for the DLL, it is
  2397. necessary to have three other files.  `dlltool' can help with the
  2398. creation of these files.
  2399.  
  2400.    The first file is a `.def' file which specifies which functions are
  2401. exported from the DLL, which functions the DLL imports, and so on.  This
  2402. is a text file and can be created by hand, or `dlltool' can be used to
  2403. create it using the `-z' option.  In this case `dlltool' will scan the
  2404. object files specified on its command line looking for those functions
  2405. which have been specially marked as being exported and put entries for
  2406. them in the `.def' file it creates.
  2407.  
  2408.    In order to mark a function as being exported from a DLL, it needs to
  2409. have an `-export:<name_of_function>' entry in the `.drectve' section of
  2410. the object file.  This can be done in C by using the asm() operator:
  2411.  
  2412.        asm (".section .drectve");
  2413.        asm (".ascii \"-export:my_func\"");
  2414.  
  2415.        int my_func (void) { ... }
  2416.  
  2417.    The second file needed for DLL creation is an exports file.  This
  2418. file is linked with the object files that make up the body of the DLL
  2419. and it handles the interface between the DLL and the outside world.
  2420. This is a binary file and it can be created by giving the `-e' option to
  2421. `dlltool' when it is creating or reading in a `.def' file.
  2422.  
  2423.    The third file needed for DLL creation is the library file that
  2424. programs will link with in order to access the functions in the DLL.
  2425. This file can be created by giving the `-l' option to dlltool when it
  2426. is creating or reading in a `.def' file.
  2427.  
  2428.    `dlltool' builds the library file by hand, but it builds the exports
  2429. file by creating temporary files containing assembler statements and
  2430. then assembling these.  The `-S' command line option can be used to
  2431. specify the path to the assembler that dlltool will use, and the `-f'
  2432. option can be used to pass specific flags to that assembler.  The `-n'
  2433. can be used to prevent dlltool from deleting these temporary assembler
  2434. files when it is done, and if `-n' is specified twice then this will
  2435. prevent dlltool from deleting the temporary object files it used to
  2436. build the library.
  2437.  
  2438.    Here is an example of creating a DLL from a source file `dll.c' and
  2439. also creating a program (from an object file called `program.o') that
  2440. uses that DLL:
  2441.  
  2442.        gcc -c dll.c
  2443.        dlltool -e exports.o -l dll.lib dll.o
  2444.        gcc dll.o exports.o -o dll.dll
  2445.        gcc program.o dll.lib -o program
  2446.  
  2447.    The command line options have the following meanings:
  2448.  
  2449. `-d FILENAME'
  2450. `--input-def FILENAME'
  2451.      Specifies the name of a `.def' file to be read in and processed.
  2452.  
  2453. `-b FILENAME'
  2454. `--base-file FILENAME'
  2455.      Specifies the name of a base file to be read in and processed.  The
  2456.      contents of this file will be added to the relocation section in
  2457.      the exports file generated by dlltool.
  2458.  
  2459. `-e FILENAME'
  2460. `--output-exp FILENAME'
  2461.      Specifies the name of the export file to be created by dlltool.
  2462.  
  2463. `-z FILENAME'
  2464. `--output-def FILENAME'
  2465.      Specifies the name of the `.def' file to be created by dlltool.
  2466.  
  2467. `-l FILENAME'
  2468. `--output-lib FILENAME'
  2469.      Specifies the name of the library file to be created by dlltool.
  2470.  
  2471. `--export-all-symbols'
  2472.      Treat all global and weak defined symbols found in the input object
  2473.      files as symbols to be exported.  There is a small list of symbols
  2474.      which are not exported by default; see the `--no-default-excludes'
  2475.      option.  You may add to the list of symbols to not export by using
  2476.      the `--exclude-symbols' option.
  2477.  
  2478. `--no-export-all-symbols'
  2479.      Only export symbols explicitly listed in an input `.def' file or in
  2480.      `.drectve' sections in the input object files.  This is the default
  2481.      behaviour.  The `.drectve' sections are created by `dllexport'
  2482.      attributes in the source code.
  2483.  
  2484. `--exclude-symbols LIST'
  2485.      Do not export the symbols in LIST.  This is a list of symbol names
  2486.      separated by comma or colon characters.  The symbol names should
  2487.      not contain a leading underscore.  This is only meaningful when
  2488.      `--export-all-symbols' is used.
  2489.  
  2490. `--no-default-excludes'
  2491.      When `--export-all-symbols' is used, it will by default avoid
  2492.      exporting certain special symbols.  The current list of symbols to
  2493.      avoid exporting is `DllMain@12', `DllEntryPoint@0', `impure_ptr'.
  2494.      You may use the `--no-default-excludes' option to go ahead and
  2495.      export these special symbols.  This is only meaningful when
  2496.      `--export-all-symbols' is used.
  2497.  
  2498. `-S PATH'
  2499. `--as PATH'
  2500.      Specifies the path, including the filename, of the assembler to be
  2501.      used to create the exports file.
  2502.  
  2503. `-f OPTIONS'
  2504. `--as-flags OPTIONS'
  2505.      Specifies any specific command line options to be passed to the
  2506.      assembler when building the exports file.  This option will work
  2507.      even if the `-S' option is not used.  This option only takes one
  2508.      argument, and if it occurs more than once on the command line,
  2509.      then later occurrences will override earlier occurrences.  So if
  2510.      it is necessary to pass multiple options to the assembler they
  2511.      should be enclosed in double quotes.
  2512.  
  2513. `-D NAME'
  2514. `--dll-name NAME'
  2515.      Specifies the name to be stored in the `.def' file as the name of
  2516.      the DLL when the `-e' option is used.  If this option is not
  2517.      present, then the filename given to the `-e' option will be used
  2518.      as the name of the DLL.
  2519.  
  2520. `-m MACHINE'
  2521. `-machine MACHINE'
  2522.      Specifies the type of machine for which the library file should be
  2523.      built.  `dlltool' has a built in default type, depending upon how
  2524.      it was created, but this option can be used to override that.
  2525.      This is normally only useful when creating DLLs for an ARM
  2526.      processor, when the contents of the DLL are actually encode using
  2527.      Thumb instructions.
  2528.  
  2529. `-a'
  2530. `--add-indirect'
  2531.      Specifies that when `dlltool' is creating the exports file it
  2532.      should add a section which allows the exported functions to be
  2533.      referenced without using the import library.  Whatever the hell
  2534.      that means!
  2535.  
  2536. `-U'
  2537. `--add-underscore'
  2538.      Specifies that when `dlltool' is creating the exports file it
  2539.      should prepend an underscore to the names of the exported
  2540.      functions.
  2541.  
  2542. `-k'
  2543. `--kill-at'
  2544.      Specifies that when `dlltool' is creating the exports file it
  2545.      should not append the string `@ <number>'.  These numbers are
  2546.      called ordinal numbers and they represent another way of accessing
  2547.      the function in a DLL, other than by name.
  2548.  
  2549. `-A'
  2550. `--add-stdcall-alias'
  2551.      Specifies that when `dlltool' is creating the exports file it
  2552.      should add aliases for stdcall symbols without `@ <number>' in
  2553.      addition to the symbols with `@ <number>'.
  2554.  
  2555. `-p'
  2556. `--ext-prefix-alias PREFIX'
  2557.      Causes `dlltool' to create external aliases for all DLL imports
  2558.      with the specified prefix.  The aliases are created for both
  2559.      external and import symbols with no leading underscore.
  2560.  
  2561. `-x'
  2562. `--no-idata4'
  2563.      Specifies that when `dlltool' is creating the exports and library
  2564.      files it should omit the `.idata4' section.  This is for
  2565.      compatibility with certain operating systems.
  2566.  
  2567. `-c'
  2568. `--no-idata5'
  2569.      Specifies that when `dlltool' is creating the exports and library
  2570.      files it should omit the `.idata5' section.  This is for
  2571.      compatibility with certain operating systems.
  2572.  
  2573. `-i'
  2574. `--interwork'
  2575.      Specifies that `dlltool' should mark the objects in the library
  2576.      file and exports file that it produces as supporting interworking
  2577.      between ARM and Thumb code.
  2578.  
  2579. `-n'
  2580. `--nodelete'
  2581.      Makes `dlltool' preserve the temporary assembler files it used to
  2582.      create the exports file.  If this option is repeated then dlltool
  2583.      will also preserve the temporary object files it uses to create
  2584.      the library file.
  2585.  
  2586. `-t PREFIX'
  2587. `--temp-prefix PREFIX'
  2588.      Makes `dlltool' use PREFIX when constructing the names of
  2589.      temporary assembler and object files.  By default, the temp file
  2590.      prefix is generated from the pid.
  2591.  
  2592. `-v'
  2593. `--verbose'
  2594.      Make dlltool describe what it is doing.
  2595.  
  2596. `-h'
  2597. `--help'
  2598.      Displays a list of command line options and then exits.
  2599.  
  2600. `-V'
  2601. `--version'
  2602.      Displays dlltool's version number and then exits.
  2603.  
  2604.  
  2605. * Menu:
  2606.  
  2607. * def file format::             The format of the dlltool `.def' file
  2608.  
  2609. 
  2610. File: binutils.info,  Node: def file format,  Up: dlltool
  2611.  
  2612. 13.1 The format of the `dlltool' `.def' file
  2613. ============================================
  2614.  
  2615. A `.def' file contains any number of the following commands:
  2616.  
  2617. `NAME' NAME `[ ,' BASE `]'
  2618.      The result is going to be named NAME`.exe'.
  2619.  
  2620. `LIBRARY' NAME `[ ,' BASE `]'
  2621.      The result is going to be named NAME`.dll'.
  2622.  
  2623. `EXPORTS ( ( (' NAME1 `[ = ' NAME2 `] ) | ( ' NAME1 `=' MODULE-NAME `.' EXTERNAL-NAME `) )'
  2624.  
  2625. `[' INTEGER `] [ NONAME ] [ CONSTANT ] [ DATA ] [ PRIVATE ] ) *'
  2626.      Declares NAME1 as an exported symbol from the DLL, with optional
  2627.      ordinal number INTEGER, or declares NAME1 as an alias (forward) of
  2628.      the function EXTERNAL-NAME in the DLL MODULE-NAME.
  2629.  
  2630. `IMPORTS ( (' INTERNAL-NAME `=' MODULE-NAME `.' INTEGER `) | [' INTERNAL-NAME `= ]' MODULE-NAME `.' EXTERNAL-NAME `) ) *'
  2631.      Declares that EXTERNAL-NAME or the exported function whose ordinal
  2632.      number is INTEGER is to be imported from the file MODULE-NAME.  If
  2633.      INTERNAL-NAME is specified then this is the name that the imported
  2634.      function will be referred to in the body of the DLL.
  2635.  
  2636. `DESCRIPTION' STRING
  2637.      Puts STRING into the output `.exp' file in the `.rdata' section.
  2638.  
  2639. `STACKSIZE' NUMBER-RESERVE `[, ' NUMBER-COMMIT `]'
  2640.  
  2641. `HEAPSIZE' NUMBER-RESERVE `[, ' NUMBER-COMMIT `]'
  2642.      Generates `--stack' or `--heap' NUMBER-RESERVE,NUMBER-COMMIT in
  2643.      the output `.drectve' section.  The linker will see this and act
  2644.      upon it.
  2645.  
  2646. `CODE' ATTR `+'
  2647.  
  2648. `DATA' ATTR `+'
  2649.  
  2650. `SECTIONS (' SECTION-NAME ATTR` + ) *'
  2651.      Generates `--attr' SECTION-NAME ATTR in the output `.drectve'
  2652.      section, where ATTR is one of `READ', `WRITE', `EXECUTE' or
  2653.      `SHARED'.  The linker will see this and act upon it.
  2654.  
  2655.  
  2656. 
  2657. File: binutils.info,  Node: readelf,  Next: size,  Prev: ranlib,  Up: Top
  2658.  
  2659. 14 readelf
  2660. **********
  2661.  
  2662.      readelf [`-a'|`--all']
  2663.              [`-h'|`--file-header']
  2664.              [`-l'|`--program-headers'|`--segments']
  2665.              [`-S'|`--section-headers'|`--sections']
  2666.              [`-g'|`--section-groups']
  2667.              [`-e'|`--headers']
  2668.              [`-s'|`--syms'|`--symbols']
  2669.              [`-n'|`--notes']
  2670.              [`-r'|`--relocs']
  2671.              [`-u'|`--unwind']
  2672.              [`-d'|`--dynamic']
  2673.              [`-V'|`--version-info']
  2674.              [`-A'|`--arch-specific']
  2675.              [`-D'|`--use-dynamic']
  2676.              [`-x' <number>|`--hex-dump='<number>]
  2677.              [`-w[liaprmfFsoR]'|
  2678.               `--debug-dump'[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges]]
  2679.              [`-I'|`-histogram']
  2680.              [`-v'|`--version']
  2681.              [`-W'|`--wide']
  2682.              [`-H'|`--help']
  2683.              ELFFILE...
  2684.  
  2685.    `readelf' displays information about one or more ELF format object
  2686. files.  The options control what particular information to display.
  2687.  
  2688.    ELFFILE... are the object files to be examined.  32-bit and 64-bit
  2689. ELF files are supported, as are archives containing ELF files.
  2690.  
  2691.    This program performs a similar function to `objdump' but it goes
  2692. into more detail and it exists independently of the BFD library, so if
  2693. there is a bug in BFD then readelf will not be affected.
  2694.  
  2695.    The long and short forms of options, shown here as alternatives, are
  2696. equivalent.  At least one option besides `-v' or `-H' must be given.
  2697.  
  2698. `-a'
  2699. `--all'
  2700.      Equivalent to specifiying `--file-header', `--program-headers',
  2701.      `--sections', `--symbols', `--relocs', `--dynamic', `--notes' and
  2702.      `--version-info'.
  2703.  
  2704. `-h'
  2705. `--file-header'
  2706.      Displays the information contained in the ELF header at the start
  2707.      of the file.
  2708.  
  2709. `-l'
  2710. `--program-headers'
  2711. `--segments'
  2712.      Displays the information contained in the file's segment headers,
  2713.      if it has any.
  2714.  
  2715. `-S'
  2716. `--sections'
  2717. `--section-headers'
  2718.      Displays the information contained in the file's section headers,
  2719.      if it has any.
  2720.  
  2721. `-g'
  2722. `--section-groups'
  2723.      Displays the information contained in the file's section groups,
  2724.      if it has any.
  2725.  
  2726. `-s'
  2727. `--symbols'
  2728. `--syms'
  2729.      Displays the entries in symbol table section of the file, if it
  2730.      has one.
  2731.  
  2732. `-e'
  2733. `--headers'
  2734.      Display all the headers in the file.  Equivalent to `-h -l -S'.
  2735.  
  2736. `-n'
  2737. `--notes'
  2738.      Displays the contents of the NOTE segments and/or sections, if any.
  2739.  
  2740. `-r'
  2741. `--relocs'
  2742.      Displays the contents of the file's relocation section, if it has
  2743.      one.
  2744.  
  2745. `-u'
  2746. `--unwind'
  2747.      Displays the contents of the file's unwind section, if it has one.
  2748.      Only the unwind sections for IA64 ELF files are currently
  2749.      supported.
  2750.  
  2751. `-d'
  2752. `--dynamic'
  2753.      Displays the contents of the file's dynamic section, if it has one.
  2754.  
  2755. `-V'
  2756. `--version-info'
  2757.      Displays the contents of the version sections in the file, it they
  2758.      exist.
  2759.  
  2760. `-A'
  2761. `--arch-specific'
  2762.      Displays architecture-specific information in the file, if there
  2763.      is any.
  2764.  
  2765. `-D'
  2766. `--use-dynamic'
  2767.      When displaying symbols, this option makes `readelf' use the
  2768.      symbol table in the file's dynamic section, rather than the one in
  2769.      the symbols section.
  2770.  
  2771. `-x <number>'
  2772. `--hex-dump=<number>'
  2773.      Displays the contents of the indicated section as a hexadecimal
  2774.      dump.
  2775.  
  2776. `-w[liaprmfFsoR]'
  2777. `--debug-dump[=line,=info,=abbrev,=pubnames,=aranges,=macro,=frames,=frames-interp,=str,=loc,=Ranges]'
  2778.      Displays the contents of the debug sections in the file, if any are
  2779.      present.  If one of the optional letters or words follows the
  2780.      switch then only data found in those specific sections will be
  2781.      dumped.
  2782.  
  2783. `-I'
  2784. `--histogram'
  2785.      Display a histogram of bucket list lengths when displaying the
  2786.      contents of the symbol tables.
  2787.  
  2788. `-v'
  2789. `--version'
  2790.      Display the version number of readelf.
  2791.  
  2792. `-W'
  2793. `--wide'
  2794.      Don't break output lines to fit into 80 columns. By default
  2795.      `readelf' breaks section header and segment listing lines for
  2796.      64-bit ELF files, so that they fit into 80 columns. This option
  2797.      causes `readelf' to print each section header resp. each segment
  2798.      one a single line, which is far more readable on terminals wider
  2799.      than 80 columns.
  2800.  
  2801. `-H'
  2802. `--help'
  2803.      Display the command line options understood by `readelf'.
  2804.  
  2805.  
  2806. 
  2807. File: binutils.info,  Node: Selecting The Target System,  Next: Reporting Bugs,  Prev: dlltool,  Up: Top
  2808.  
  2809. 15 Selecting the Target System
  2810. ******************************
  2811.  
  2812. You can specify two aspects of the target system to the GNU binary file
  2813. utilities, each in several ways:
  2814.  
  2815.    * the target
  2816.  
  2817.    * the architecture
  2818.  
  2819.    In the following summaries, the lists of ways to specify values are
  2820. in order of decreasing precedence.  The ways listed first override those
  2821. listed later.
  2822.  
  2823.    The commands to list valid values only list the values for which the
  2824. programs you are running were configured.  If they were configured with
  2825. `--enable-targets=all', the commands list most of the available values,
  2826. but a few are left out; not all targets can be configured in at once
  2827. because some of them can only be configured "native" (on hosts with the
  2828. same type as the target system).
  2829.  
  2830. * Menu:
  2831.  
  2832. * Target Selection::
  2833. * Architecture Selection::
  2834.  
  2835. 
  2836. File: binutils.info,  Node: Target Selection,  Next: Architecture Selection,  Up: Selecting The Target System
  2837.  
  2838. 15.1 Target Selection
  2839. =====================
  2840.  
  2841. A "target" is an object file format.  A given target may be supported
  2842. for multiple architectures (*note Architecture Selection::).  A target
  2843. selection may also have variations for different operating systems or
  2844. architectures.
  2845.  
  2846.    The command to list valid target values is `objdump -i' (the first
  2847. column of output contains the relevant information).
  2848.  
  2849.    Some sample values are: `a.out-hp300bsd', `ecoff-littlemips',
  2850. `a.out-sunos-big'.
  2851.  
  2852.    You can also specify a target using a configuration triplet.  This is
  2853. the same sort of name that is passed to `configure' to specify a
  2854. target.  When you use a configuration triplet as an argument, it must be
  2855. fully canonicalized.  You can see the canonical version of a triplet by
  2856. running the shell script `config.sub' which is included with the
  2857. sources.
  2858.  
  2859.    Some sample configuration triplets are: `m68k-hp-bsd',
  2860. `mips-dec-ultrix', `sparc-sun-sunos'.
  2861.  
  2862. `objdump' Target
  2863. ----------------
  2864.  
  2865. Ways to specify:
  2866.  
  2867.   1. command line option: `-b' or `--target'
  2868.  
  2869.   2. environment variable `GNUTARGET'
  2870.  
  2871.   3. deduced from the input file
  2872.  
  2873. `objcopy' and `strip' Input Target
  2874. ----------------------------------
  2875.  
  2876. Ways to specify:
  2877.  
  2878.   1. command line options: `-I' or `--input-target', or `-F' or
  2879.      `--target'
  2880.  
  2881.   2. environment variable `GNUTARGET'
  2882.  
  2883.   3. deduced from the input file
  2884.  
  2885. `objcopy' and `strip' Output Target
  2886. -----------------------------------
  2887.  
  2888. Ways to specify:
  2889.  
  2890.   1. command line options: `-O' or `--output-target', or `-F' or
  2891.      `--target'
  2892.  
  2893.   2. the input target (see "`objcopy' and `strip' Input Target" above)
  2894.  
  2895.   3. environment variable `GNUTARGET'
  2896.  
  2897.   4. deduced from the input file
  2898.  
  2899. `nm', `size', and `strings' Target
  2900. ----------------------------------
  2901.  
  2902. Ways to specify:
  2903.  
  2904.   1. command line option: `--target'
  2905.  
  2906.   2. environment variable `GNUTARGET'
  2907.  
  2908.   3. deduced from the input file
  2909.  
  2910. 
  2911. File: binutils.info,  Node: Architecture Selection,  Prev: Target Selection,  Up: Selecting The Target System
  2912.  
  2913. 15.2 Architecture Selection
  2914. ===========================
  2915.  
  2916. An "architecture" is a type of CPU on which an object file is to run.
  2917. Its name may contain a colon, separating the name of the processor
  2918. family from the name of the particular CPU.
  2919.  
  2920.    The command to list valid architecture values is `objdump -i' (the
  2921. second column contains the relevant information).
  2922.  
  2923.    Sample values: `m68k:68020', `mips:3000', `sparc'.
  2924.  
  2925. `objdump' Architecture
  2926. ----------------------
  2927.  
  2928. Ways to specify:
  2929.  
  2930.   1. command line option: `-m' or `--architecture'
  2931.  
  2932.   2. deduced from the input file
  2933.  
  2934. `objcopy', `nm', `size', `strings' Architecture
  2935. -----------------------------------------------
  2936.  
  2937. Ways to specify:
  2938.  
  2939.   1. deduced from the input file
  2940.  
  2941. 
  2942. File: binutils.info,  Node: Reporting Bugs,  Next: GNU Free Documentation License,  Prev: Selecting The Target System,  Up: Top
  2943.  
  2944. 16 Reporting Bugs
  2945. *****************
  2946.  
  2947. Your bug reports play an essential role in making the binary utilities
  2948. reliable.
  2949.  
  2950.    Reporting a bug may help you by bringing a solution to your problem,
  2951. or it may not.  But in any case the principal function of a bug report
  2952. is to help the entire community by making the next version of the binary
  2953. utilities work better.  Bug reports are your contribution to their
  2954. maintenance.
  2955.  
  2956.    In order for a bug report to serve its purpose, you must include the
  2957. information that enables us to fix the bug.
  2958.  
  2959. * Menu:
  2960.  
  2961. * Bug Criteria::                Have you found a bug?
  2962. * Bug Reporting::               How to report bugs
  2963.  
  2964. 
  2965. File: binutils.info,  Node: Bug Criteria,  Next: Bug Reporting,  Up: Reporting Bugs
  2966.  
  2967. 16.1 Have You Found a Bug?
  2968. ==========================
  2969.  
  2970. If you are not sure whether you have found a bug, here are some
  2971. guidelines:
  2972.  
  2973.    * If a binary utility gets a fatal signal, for any input whatever,
  2974.      that is a bug.  Reliable utilities never crash.
  2975.  
  2976.    * If a binary utility produces an error message for valid input,
  2977.      that is a bug.
  2978.  
  2979.    * If you are an experienced user of binary utilities, your
  2980.      suggestions for improvement are welcome in any case.
  2981.  
  2982. 
  2983. File: binutils.info,  Node: Bug Reporting,  Prev: Bug Criteria,  Up: Reporting Bugs
  2984.  
  2985. 16.2 How to Report Bugs
  2986. =======================
  2987.  
  2988. A number of companies and individuals offer support for GNU products.
  2989. If you obtained the binary utilities from a support organization, we
  2990. recommend you contact that organization first.
  2991.  
  2992.    You can find contact information for many support companies and
  2993. individuals in the file `etc/SERVICE' in the GNU Emacs distribution.
  2994.  
  2995.    In any event, we also recommend that you send bug reports for the
  2996. binary utilities to `bug-binutils@gnu.org'.
  2997.  
  2998.    The fundamental principle of reporting bugs usefully is this:
  2999. *report all the facts*.  If you are not sure whether to state a fact or
  3000. leave it out, state it!
  3001.  
  3002.    Often people omit facts because they think they know what causes the
  3003. problem and assume that some details do not matter.  Thus, you might
  3004. assume that the name of a file you use in an example does not matter.
  3005. Well, probably it does not, but one cannot be sure.  Perhaps the bug is
  3006. a stray memory reference which happens to fetch from the location where
  3007. that pathname is stored in memory; perhaps, if the pathname were
  3008. different, the contents of that location would fool the utility into
  3009. doing the right thing despite the bug.  Play it safe and give a
  3010. specific, complete example.  That is the easiest thing for you to do,
  3011. and the most helpful.
  3012.  
  3013.    Keep in mind that the purpose of a bug report is to enable us to fix
  3014. the bug if it is new to us.  Therefore, always write your bug reports
  3015. on the assumption that the bug has not been reported previously.
  3016.  
  3017.    Sometimes people give a few sketchy facts and ask, "Does this ring a
  3018. bell?"  This cannot help us fix a bug, so it is basically useless.  We
  3019. respond by asking for enough details to enable us to investigate.  You
  3020. might as well expedite matters by sending them to begin with.
  3021.  
  3022.    To enable us to fix the bug, you should include all these things:
  3023.  
  3024.    * The version of the utility.  Each utility announces it if you
  3025.      start it with the `--version' argument.
  3026.  
  3027.      Without this, we will not know whether there is any point in
  3028.      looking for the bug in the current version of the binary utilities.
  3029.  
  3030.    * Any patches you may have applied to the source, including any
  3031.      patches made to the `BFD' library.
  3032.  
  3033.    * The type of machine you are using, and the operating system name
  3034.      and version number.
  3035.  
  3036.    * What compiler (and its version) was used to compile the
  3037.      utilities--e.g.  "`gcc-2.7'".
  3038.  
  3039.    * The command arguments you gave the utility to observe the bug.  To
  3040.      guarantee you will not omit something important, list them all.  A
  3041.      copy of the Makefile (or the output from make) is sufficient.
  3042.  
  3043.      If we were to try to guess the arguments, we would probably guess
  3044.      wrong and then we might not encounter the bug.
  3045.  
  3046.    * A complete input file, or set of input files, that will reproduce
  3047.      the bug.  If the utility is reading an object file or files, then
  3048.      it is generally most helpful to send the actual object files,
  3049.      uuencoded if necessary to get them through the mail system.  Note
  3050.      that `bug-binutils@gnu.org' is a mailing list, so you should avoid
  3051.      sending very large files to it.  Making the files available for
  3052.      anonymous FTP is OK.
  3053.  
  3054.      If the source files were produced exclusively using GNU programs
  3055.      (e.g., `gcc', `gas', and/or the GNU `ld'), then it may be OK to
  3056.      send the source files rather than the object files.  In this case,
  3057.      be sure to say exactly what version of `gcc', or whatever, was
  3058.      used to produce the object files.  Also say how `gcc', or
  3059.      whatever, was configured.
  3060.  
  3061.    * A description of what behavior you observe that you believe is
  3062.      incorrect.  For example, "It gets a fatal signal."
  3063.  
  3064.      Of course, if the bug is that the utility gets a fatal signal,
  3065.      then we will certainly notice it.  But if the bug is incorrect
  3066.      output, we might not notice unless it is glaringly wrong.  You
  3067.      might as well not give us a chance to make a mistake.
  3068.  
  3069.      Even if the problem you experience is a fatal signal, you should
  3070.      still say so explicitly.  Suppose something strange is going on,
  3071.      such as your copy of the utility is out of synch, or you have
  3072.      encountered a bug in the C library on your system.  (This has
  3073.      happened!)  Your copy might crash and ours would not.  If you told
  3074.      us to expect a crash, then when ours fails to crash, we would know
  3075.      that the bug was not happening for us.  If you had not told us to
  3076.      expect a crash, then we would not be able to draw any conclusion
  3077.      from our observations.
  3078.  
  3079.    * If you wish to suggest changes to the source, send us context
  3080.      diffs, as generated by `diff' with the `-u', `-c', or `-p' option.
  3081.      Always send diffs from the old file to the new file.  If you wish
  3082.      to discuss something in the `ld' source, refer to it by context,
  3083.      not by line number.
  3084.  
  3085.      The line numbers in our development sources will not match those
  3086.      in your sources.  Your line numbers would convey no useful
  3087.      information to us.
  3088.  
  3089.    Here are some things that are not necessary:
  3090.  
  3091.    * A description of the envelope of the bug.
  3092.  
  3093.      Often people who encounter a bug spend a lot of time investigating
  3094.      which changes to the input file will make the bug go away and which
  3095.      changes will not affect it.
  3096.  
  3097.      This is often time consuming and not very useful, because the way
  3098.      we will find the bug is by running a single example under the
  3099.      debugger with breakpoints, not by pure deduction from a series of
  3100.      examples.  We recommend that you save your time for something else.
  3101.  
  3102.      Of course, if you can find a simpler example to report _instead_
  3103.      of the original one, that is a convenience for us.  Errors in the
  3104.      output will be easier to spot, running under the debugger will take
  3105.      less time, and so on.
  3106.  
  3107.      However, simplification is not vital; if you do not want to do
  3108.      this, report the bug anyway and send us the entire test case you
  3109.      used.
  3110.  
  3111.    * A patch for the bug.
  3112.  
  3113.      A patch for the bug does help us if it is a good one.  But do not
  3114.      omit the necessary information, such as the test case, on the
  3115.      assumption that a patch is all we need.  We might see problems
  3116.      with your patch and decide to fix the problem another way, or we
  3117.      might not understand it at all.
  3118.  
  3119.      Sometimes with programs as complicated as the binary utilities it
  3120.      is very hard to construct an example that will make the program
  3121.      follow a certain path through the code.  If you do not send us the
  3122.      example, we will not be able to construct one, so we will not be
  3123.      able to verify that the bug is fixed.
  3124.  
  3125.      And if we cannot understand what bug you are trying to fix, or why
  3126.      your patch should be an improvement, we will not install it.  A
  3127.      test case will help us to understand.
  3128.  
  3129.    * A guess about what the bug is or what it depends on.
  3130.  
  3131.      Such guesses are usually wrong.  Even we cannot guess right about
  3132.      such things without first using the debugger to find the facts.
  3133.  
  3134. 
  3135. File: binutils.info,  Node: GNU Free Documentation License,  Next: Index,  Prev: Reporting Bugs,  Up: Top
  3136.  
  3137. Appendix A GNU Free Documentation License
  3138. *****************************************
  3139.  
  3140.                         Version 1.1, March 2000
  3141.  
  3142.      Copyright (C) 2000, 2003  Free Software Foundation, Inc.
  3143.      59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  3144.  
  3145.      Everyone is permitted to copy and distribute verbatim copies
  3146.      of this license document, but changing it is not allowed.
  3147.  
  3148.  
  3149.   0. PREAMBLE
  3150.  
  3151.      The purpose of this License is to make a manual, textbook, or other
  3152.      written document "free" in the sense of freedom: to assure everyone
  3153.      the effective freedom to copy and redistribute it, with or without
  3154.      modifying it, either commercially or noncommercially.  Secondarily,
  3155.      this License preserves for the author and publisher a way to get
  3156.      credit for their work, while not being considered responsible for
  3157.      modifications made by others.
  3158.  
  3159.      This License is a kind of "copyleft", which means that derivative
  3160.      works of the document must themselves be free in the same sense.
  3161.      It complements the GNU General Public License, which is a copyleft
  3162.      license designed for free software.
  3163.  
  3164.      We have designed this License in order to use it for manuals for
  3165.      free software, because free software needs free documentation: a
  3166.      free program should come with manuals providing the same freedoms
  3167.      that the software does.  But this License is not limited to
  3168.      software manuals; it can be used for any textual work, regardless
  3169.      of subject matter or whether it is published as a printed book.
  3170.      We recommend this License principally for works whose purpose is
  3171.      instruction or reference.
  3172.  
  3173.  
  3174.   1. APPLICABILITY AND DEFINITIONS
  3175.  
  3176.      This License applies to any manual or other work that contains a
  3177.      notice placed by the copyright holder saying it can be distributed
  3178.      under the terms of this License.  The "Document", below, refers to
  3179.      any such manual or work.  Any member of the public is a licensee,
  3180.      and is addressed as "you."
  3181.  
  3182.      A "Modified Version" of the Document means any work containing the
  3183.      Document or a portion of it, either copied verbatim, or with
  3184.      modifications and/or translated into another language.
  3185.  
  3186.      A "Secondary Section" is a named appendix or a front-matter
  3187.      section of the Document that deals exclusively with the
  3188.      relationship of the publishers or authors of the Document to the
  3189.      Document's overall subject (or to related matters) and contains
  3190.      nothing that could fall directly within that overall subject.
  3191.      (For example, if the Document is in part a textbook of
  3192.      mathematics, a Secondary Section may not explain any mathematics.)
  3193.      The relationship could be a matter of historical connection with
  3194.      the subject or with related matters, or of legal, commercial,
  3195.      philosophical, ethical or political position regarding them.
  3196.  
  3197.      The "Invariant Sections" are certain Secondary Sections whose
  3198.      titles are designated, as being those of Invariant Sections, in
  3199.      the notice that says that the Document is released under this
  3200.      License.
  3201.  
  3202.      The "Cover Texts" are certain short passages of text that are
  3203.      listed, as Front-Cover Texts or Back-Cover Texts, in the notice
  3204.      that says that the Document is released under this License.
  3205.  
  3206.      A "Transparent" copy of the Document means a machine-readable copy,
  3207.      represented in a format whose specification is available to the
  3208.      general public, whose contents can be viewed and edited directly
  3209.      and straightforwardly with generic text editors or (for images
  3210.      composed of pixels) generic paint programs or (for drawings) some
  3211.      widely available drawing editor, and that is suitable for input to
  3212.      text formatters or for automatic translation to a variety of
  3213.      formats suitable for input to text formatters.  A copy made in an
  3214.      otherwise Transparent file format whose markup has been designed
  3215.      to thwart or discourage subsequent modification by readers is not
  3216.      Transparent.  A copy that is not "Transparent" is called "Opaque."
  3217.  
  3218.      Examples of suitable formats for Transparent copies include plain
  3219.      ASCII without markup, Texinfo input format, LaTeX input format,
  3220.      SGML or XML using a publicly available DTD, and
  3221.      standard-conforming simple HTML designed for human modification.
  3222.      Opaque formats include PostScript, PDF, proprietary formats that
  3223.      can be read and edited only by proprietary word processors, SGML
  3224.      or XML for which the DTD and/or processing tools are not generally
  3225.      available, and the machine-generated HTML produced by some word
  3226.      processors for output purposes only.
  3227.  
  3228.      The "Title Page" means, for a printed book, the title page itself,
  3229.      plus such following pages as are needed to hold, legibly, the
  3230.      material this License requires to appear in the title page.  For
  3231.      works in formats which do not have any title page as such, "Title
  3232.      Page" means the text near the most prominent appearance of the
  3233.      work's title, preceding the beginning of the body of the text.
  3234.  
  3235.   2. VERBATIM COPYING
  3236.  
  3237.      You may copy and distribute the Document in any medium, either
  3238.      commercially or noncommercially, provided that this License, the
  3239.      copyright notices, and the license notice saying this License
  3240.      applies to the Document are reproduced in all copies, and that you
  3241.      add no other conditions whatsoever to those of this License.  You
  3242.      may not use technical measures to obstruct or control the reading
  3243.      or further copying of the copies you make or distribute.  However,
  3244.      you may accept compensation in exchange for copies.  If you
  3245.      distribute a large enough number of copies you must also follow
  3246.      the conditions in section 3.
  3247.  
  3248.      You may also lend copies, under the same conditions stated above,
  3249.      and you may publicly display copies.
  3250.  
  3251.   3. COPYING IN QUANTITY
  3252.  
  3253.      If you publish printed copies of the Document numbering more than
  3254.      100, and the Document's license notice requires Cover Texts, you
  3255.      must enclose the copies in covers that carry, clearly and legibly,
  3256.      all these Cover Texts: Front-Cover Texts on the front cover, and
  3257.      Back-Cover Texts on the back cover.  Both covers must also clearly
  3258.      and legibly identify you as the publisher of these copies.  The
  3259.      front cover must present the full title with all words of the
  3260.      title equally prominent and visible.  You may add other material
  3261.      on the covers in addition.  Copying with changes limited to the
  3262.      covers, as long as they preserve the title of the Document and
  3263.      satisfy these conditions, can be treated as verbatim copying in
  3264.      other respects.
  3265.  
  3266.      If the required texts for either cover are too voluminous to fit
  3267.      legibly, you should put the first ones listed (as many as fit
  3268.      reasonably) on the actual cover, and continue the rest onto
  3269.      adjacent pages.
  3270.  
  3271.      If you publish or distribute Opaque copies of the Document
  3272.      numbering more than 100, you must either include a
  3273.      machine-readable Transparent copy along with each Opaque copy, or
  3274.      state in or with each Opaque copy a publicly-accessible
  3275.      computer-network location containing a complete Transparent copy
  3276.      of the Document, free of added material, which the general
  3277.      network-using public has access to download anonymously at no
  3278.      charge using public-standard network protocols.  If you use the
  3279.      latter option, you must take reasonably prudent steps, when you
  3280.      begin distribution of Opaque copies in quantity, to ensure that
  3281.      this Transparent copy will remain thus accessible at the stated
  3282.      location until at least one year after the last time you
  3283.      distribute an Opaque copy (directly or through your agents or
  3284.      retailers) of that edition to the public.
  3285.  
  3286.      It is requested, but not required, that you contact the authors of
  3287.      the Document well before redistributing any large number of
  3288.      copies, to give them a chance to provide you with an updated
  3289.      version of the Document.
  3290.  
  3291.   4. MODIFICATIONS
  3292.  
  3293.      You may copy and distribute a Modified Version of the Document
  3294.      under the conditions of sections 2 and 3 above, provided that you
  3295.      release the Modified Version under precisely this License, with
  3296.      the Modified Version filling the role of the Document, thus
  3297.      licensing distribution and modification of the Modified Version to
  3298.      whoever possesses a copy of it.  In addition, you must do these
  3299.      things in the Modified Version:
  3300.  
  3301.      A. Use in the Title Page (and on the covers, if any) a title
  3302.      distinct    from that of the Document, and from those of previous
  3303.      versions    (which should, if there were any, be listed in the
  3304.      History section    of the Document).  You may use the same title
  3305.      as a previous version    if the original publisher of that version
  3306.      gives permission.
  3307.      B. List on the Title Page, as authors, one or more persons or
  3308.      entities    responsible for authorship of the modifications in the
  3309.      Modified    Version, together with at least five of the principal
  3310.      authors of the    Document (all of its principal authors, if it
  3311.      has less than five).
  3312.      C. State on the Title page the name of the publisher of the
  3313.      Modified Version, as the publisher.
  3314.      D. Preserve all the copyright notices of the Document.
  3315.      E. Add an appropriate copyright notice for your modifications
  3316.      adjacent to the other copyright notices.
  3317.      F. Include, immediately after the copyright notices, a license
  3318.      notice    giving the public permission to use the Modified Version
  3319.      under the    terms of this License, in the form shown in the
  3320.      Addendum below.
  3321.      G. Preserve in that license notice the full lists of Invariant
  3322.      Sections    and required Cover Texts given in the Document's
  3323.      license notice.
  3324.      H. Include an unaltered copy of this License.
  3325.      I. Preserve the section entitled "History", and its title, and add
  3326.      to    it an item stating at least the title, year, new authors, and
  3327.        publisher of the Modified Version as given on the Title Page.
  3328.      If    there is no section entitled "History" in the Document,
  3329.      create one    stating the title, year, authors, and publisher of
  3330.      the Document as    given on its Title Page, then add an item
  3331.      describing the Modified    Version as stated in the previous
  3332.      sentence.
  3333.      J. Preserve the network location, if any, given in the Document for
  3334.        public access to a Transparent copy of the Document, and
  3335.      likewise    the network locations given in the Document for
  3336.      previous versions    it was based on.  These may be placed in the
  3337.      "History" section.     You may omit a network location for a work
  3338.      that was published at    least four years before the Document
  3339.      itself, or if the original    publisher of the version it refers
  3340.      to gives permission.
  3341.      K. In any section entitled "Acknowledgements" or "Dedications",
  3342.      preserve the section's title, and preserve in the section all the
  3343.       substance and tone of each of the contributor acknowledgements
  3344.      and/or dedications given therein.
  3345.      L. Preserve all the Invariant Sections of the Document,
  3346.      unaltered in their text and in their titles.  Section numbers
  3347.      or the equivalent are not considered part of the section titles.
  3348.      M. Delete any section entitled "Endorsements."  Such a section
  3349.      may not be included in the Modified Version.
  3350.      N. Do not retitle any existing section as "Endorsements"    or to
  3351.      conflict in title with any Invariant Section.
  3352.  
  3353.      If the Modified Version includes new front-matter sections or
  3354.      appendices that qualify as Secondary Sections and contain no
  3355.      material copied from the Document, you may at your option
  3356.      designate some or all of these sections as invariant.  To do this,
  3357.      add their titles to the list of Invariant Sections in the Modified
  3358.      Version's license notice.  These titles must be distinct from any
  3359.      other section titles.
  3360.  
  3361.      You may add a section entitled "Endorsements", provided it contains
  3362.      nothing but endorsements of your Modified Version by various
  3363.      parties-for example, statements of peer review or that the text has
  3364.      been approved by an organization as the authoritative definition
  3365.      of a standard.
  3366.  
  3367.      You may add a passage of up to five words as a Front-Cover Text,
  3368.      and a passage of up to 25 words as a Back-Cover Text, to the end
  3369.      of the list of Cover Texts in the Modified Version.  Only one
  3370.      passage of Front-Cover Text and one of Back-Cover Text may be
  3371.      added by (or through arrangements made by) any one entity.  If the
  3372.      Document already includes a cover text for the same cover,
  3373.      previously added by you or by arrangement made by the same entity
  3374.      you are acting on behalf of, you may not add another; but you may
  3375.      replace the old one, on explicit permission from the previous
  3376.      publisher that added the old one.
  3377.  
  3378.      The author(s) and publisher(s) of the Document do not by this
  3379.      License give permission to use their names for publicity for or to
  3380.      assert or imply endorsement of any Modified Version.
  3381.  
  3382.   5. COMBINING DOCUMENTS
  3383.  
  3384.      You may combine the Document with other documents released under
  3385.      this License, under the terms defined in section 4 above for
  3386.      modified versions, provided that you include in the combination
  3387.      all of the Invariant Sections of all of the original documents,
  3388.      unmodified, and list them all as Invariant Sections of your
  3389.      combined work in its license notice.
  3390.  
  3391.      The combined work need only contain one copy of this License, and
  3392.      multiple identical Invariant Sections may be replaced with a single
  3393.      copy.  If there are multiple Invariant Sections with the same name
  3394.      but different contents, make the title of each such section unique
  3395.      by adding at the end of it, in parentheses, the name of the
  3396.      original author or publisher of that section if known, or else a
  3397.      unique number.  Make the same adjustment to the section titles in
  3398.      the list of Invariant Sections in the license notice of the
  3399.      combined work.
  3400.  
  3401.      In the combination, you must combine any sections entitled
  3402.      "History" in the various original documents, forming one section
  3403.      entitled "History"; likewise combine any sections entitled
  3404.      "Acknowledgements", and any sections entitled "Dedications."  You
  3405.      must delete all sections entitled "Endorsements."
  3406.  
  3407.   6. COLLECTIONS OF DOCUMENTS
  3408.  
  3409.      You may make a collection consisting of the Document and other
  3410.      documents released under this License, and replace the individual
  3411.      copies of this License in the various documents with a single copy
  3412.      that is included in the collection, provided that you follow the
  3413.      rules of this License for verbatim copying of each of the
  3414.      documents in all other respects.
  3415.  
  3416.      You may extract a single document from such a collection, and
  3417.      distribute it individually under this License, provided you insert
  3418.      a copy of this License into the extracted document, and follow
  3419.      this License in all other respects regarding verbatim copying of
  3420.      that document.
  3421.  
  3422.   7. AGGREGATION WITH INDEPENDENT WORKS
  3423.  
  3424.      A compilation of the Document or its derivatives with other
  3425.      separate and independent documents or works, in or on a volume of
  3426.      a storage or distribution medium, does not as a whole count as a
  3427.      Modified Version of the Document, provided no compilation
  3428.      copyright is claimed for the compilation.  Such a compilation is
  3429.      called an "aggregate", and this License does not apply to the
  3430.      other self-contained works thus compiled with the Document, on
  3431.      account of their being thus compiled, if they are not themselves
  3432.      derivative works of the Document.
  3433.  
  3434.      If the Cover Text requirement of section 3 is applicable to these
  3435.      copies of the Document, then if the Document is less than one
  3436.      quarter of the entire aggregate, the Document's Cover Texts may be
  3437.      placed on covers that surround only the Document within the
  3438.      aggregate.  Otherwise they must appear on covers around the whole
  3439.      aggregate.
  3440.  
  3441.   8. TRANSLATION
  3442.  
  3443.      Translation is considered a kind of modification, so you may
  3444.      distribute translations of the Document under the terms of section
  3445.      4.  Replacing Invariant Sections with translations requires special
  3446.      permission from their copyright holders, but you may include
  3447.      translations of some or all Invariant Sections in addition to the
  3448.      original versions of these Invariant Sections.  You may include a
  3449.      translation of this License provided that you also include the
  3450.      original English version of this License.  In case of a
  3451.      disagreement between the translation and the original English
  3452.      version of this License, the original English version will prevail.
  3453.  
  3454.   9. TERMINATION
  3455.  
  3456.      You may not copy, modify, sublicense, or distribute the Document
  3457.      except as expressly provided for under this License.  Any other
  3458.      attempt to copy, modify, sublicense or distribute the Document is
  3459.      void, and will automatically terminate your rights under this
  3460.      License.  However, parties who have received copies, or rights,
  3461.      from you under this License will not have their licenses
  3462.      terminated so long as such parties remain in full compliance.
  3463.  
  3464.  10. FUTURE REVISIONS OF THIS LICENSE
  3465.  
  3466.      The Free Software Foundation may publish new, revised versions of
  3467.      the GNU Free Documentation License from time to time.  Such new
  3468.      versions will be similar in spirit to the present version, but may
  3469.      differ in detail to address new problems or concerns.  See
  3470.      http://www.gnu.org/copyleft/.
  3471.  
  3472.      Each version of the License is given a distinguishing version
  3473.      number.  If the Document specifies that a particular numbered
  3474.      version of this License "or any later version" applies to it, you
  3475.      have the option of following the terms and conditions either of
  3476.      that specified version or of any later version that has been
  3477.      published (not as a draft) by the Free Software Foundation.  If
  3478.      the Document does not specify a version number of this License,
  3479.      you may choose any version ever published (not as a draft) by the
  3480.      Free Software Foundation.
  3481.  
  3482.  
  3483. ADDENDUM: How to use this License for your documents
  3484. ====================================================
  3485.  
  3486. To use this License in a document you have written, include a copy of
  3487. the License in the document and put the following copyright and license
  3488. notices just after the title page:
  3489.  
  3490.      Copyright (C)  YEAR  YOUR NAME.
  3491.      Permission is granted to copy, distribute and/or modify this document
  3492.      under the terms of the GNU Free Documentation License, Version 1.1
  3493.      or any later version published by the Free Software Foundation;
  3494.      with the Invariant Sections being LIST THEIR TITLES, with the
  3495.      Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST.
  3496.      A copy of the license is included in the section entitled "GNU
  3497.      Free Documentation License."
  3498.  
  3499.    If you have no Invariant Sections, write "with no Invariant Sections"
  3500. instead of saying which ones are invariant.  If you have no Front-Cover
  3501. Texts, write "no Front-Cover Texts" instead of "Front-Cover Texts being
  3502. LIST"; likewise for Back-Cover Texts.
  3503.  
  3504.    If your document contains nontrivial examples of program code, we
  3505. recommend releasing these examples in parallel under your choice of
  3506. free software license, such as the GNU General Public License, to
  3507. permit their use in free software.
  3508.  
  3509. 
  3510. File: binutils.info,  Node: Index,  Prev: GNU Free Documentation License,  Up: Top
  3511.  
  3512. Index
  3513. *****
  3514.  
  3515. [index]
  3516. * Menu:
  3517.  
  3518. * .stab:                                 objdump.             (line 310)
  3519. * addr2line:                             addr2line.           (line   6)
  3520. * address to file name and line number:  addr2line.           (line   6)
  3521. * all header information, object file:   objdump.             (line 350)
  3522. * ar:                                    ar.                  (line   6)
  3523. * ar compatibility:                      ar.                  (line  40)
  3524. * architecture:                          objdump.             (line 175)
  3525. * architectures available:               objdump.             (line 160)
  3526. * archive contents:                      ranlib.              (line   6)
  3527. * archive headers:                       objdump.             (line  59)
  3528. * archives:                              ar.                  (line   6)
  3529. * base files:                            dlltool.             (line 107)
  3530. * bug criteria:                          Bug Criteria.        (line   6)
  3531. * bug reports:                           Bug Reporting.       (line   6)
  3532. * bugs:                                  Reporting Bugs.      (line   6)
  3533. * bugs, reporting:                       Bug Reporting.       (line   6)
  3534. * c++filt:                               c++filt.             (line   6)
  3535. * changing object addresses:             objcopy.             (line 258)
  3536. * changing section address:              objcopy.             (line 268)
  3537. * changing section LMA:                  objcopy.             (line 276)
  3538. * changing section VMA:                  objcopy.             (line 289)
  3539. * changing start address:                objcopy.             (line 253)
  3540. * collections of files:                  ar.                  (line   6)
  3541. * compatibility, ar:                     ar.                  (line  40)
  3542. * contents of archive:                   ar cmdline.          (line  88)
  3543. * crash:                                 Bug Criteria.        (line   9)
  3544. * creating archives:                     ar cmdline.          (line 127)
  3545. * cxxfilt:                               c++filt.             (line  13)
  3546. * dates in archive:                      ar cmdline.          (line 154)
  3547. * debug symbols:                         objdump.             (line 310)
  3548. * debugging symbols:                     nm.                  (line 116)
  3549. * deleting from archive:                 ar cmdline.          (line  26)
  3550. * demangling C++ symbols:                c++filt.             (line   6)
  3551. * demangling in nm:                      nm.                  (line 124)
  3552. * demangling in objdump <1>:             addr2line.           (line  52)
  3553. * demangling in objdump:                 objdump.             (line  87)
  3554. * disassembling object code:             objdump.             (line 109)
  3555. * disassembly architecture:              objdump.             (line 175)
  3556. * disassembly endianness:                objdump.             (line 125)
  3557. * disassembly, with source:              objdump.             (line 296)
  3558. * discarding symbols:                    strip.               (line   6)
  3559. * DLL:                                   dlltool.             (line   6)
  3560. * dlltool:                               dlltool.             (line   6)
  3561. * dynamic relocation entries, in object file: objdump.        (line 285)
  3562. * dynamic symbol table entries, printing: objdump.            (line 334)
  3563. * dynamic symbols:                       nm.                  (line 136)
  3564. * ELF dynamic section information:       readelf.             (line  97)
  3565. * ELF file header information:           readelf.             (line  50)
  3566. * ELF file information:                  readelf.             (line   6)
  3567. * ELF notes:                             readelf.             (line  82)
  3568. * ELF object file format:                objdump.             (line 310)
  3569. * ELF program header information:        readelf.             (line  56)
  3570. * ELF reloc information:                 readelf.             (line  86)
  3571. * ELF section group information:         readelf.             (line  67)
  3572. * ELF section information:               readelf.             (line  62)
  3573. * ELF segment information:               readelf.             (line  56)
  3574. * ELF symbol table information:          readelf.             (line  73)
  3575. * ELF version sections informations:     readelf.             (line 101)
  3576. * endianness:                            objdump.             (line 125)
  3577. * error on valid input:                  Bug Criteria.        (line  12)
  3578. * external symbols:                      nm.                  (line 148)
  3579. * extract from archive:                  ar cmdline.          (line 103)
  3580. * fatal signal:                          Bug Criteria.        (line   9)
  3581. * file name:                             nm.                  (line 110)
  3582. * header information, all:               objdump.             (line 350)
  3583. * input .def file:                       dlltool.             (line 103)
  3584. * input file name:                       nm.                  (line 110)
  3585. * libraries:                             ar.                  (line  25)
  3586. * listings strings:                      strings.             (line   6)
  3587. * machine instructions:                  objdump.             (line 109)
  3588. * moving in archive:                     ar cmdline.          (line  34)
  3589. * MRI compatibility, ar:                 ar scripts.          (line   8)
  3590. * name duplication in archive:           ar cmdline.          (line  97)
  3591. * name length:                           ar.                  (line  18)
  3592. * nm:                                    nm.                  (line   6)
  3593. * nm compatibility:                      nm.                  (line 120)
  3594. * nm format:                             nm.                  (line 120)
  3595. * not writing archive index:             ar cmdline.          (line 173)
  3596. * objdump:                               objdump.             (line   6)
  3597. * object code format <1>:                addr2line.           (line  47)
  3598. * object code format <2>:                strings.             (line  65)
  3599. * object code format <3>:                size.                (line  79)
  3600. * object code format <4>:                objdump.             (line  73)
  3601. * object code format:                    nm.                  (line 212)
  3602. * object file header:                    objdump.             (line 131)
  3603. * object file information:               objdump.             (line   6)
  3604. * object file sections:                  objdump.             (line 291)
  3605. * object formats available:              objdump.             (line 160)
  3606. * operations on archive:                 ar cmdline.          (line  22)
  3607. * printing from archive:                 ar cmdline.          (line  46)
  3608. * printing strings:                      strings.             (line   6)
  3609. * quick append to archive:               ar cmdline.          (line  54)
  3610. * radix for section sizes:               size.                (line  65)
  3611. * ranlib:                                ranlib.              (line   6)
  3612. * readelf:                               readelf.             (line   6)
  3613. * relative placement in archive:         ar cmdline.          (line 115)
  3614. * relocation entries, in object file:    objdump.             (line 279)
  3615. * removing symbols:                      strip.               (line   6)
  3616. * repeated names in archive:             ar cmdline.          (line  97)
  3617. * replacement in archive:                ar cmdline.          (line  70)
  3618. * reporting bugs:                        Reporting Bugs.      (line   6)
  3619. * scripts, ar:                           ar scripts.          (line   8)
  3620. * section addresses in objdump:          objdump.             (line  65)
  3621. * section headers:                       objdump.             (line 142)
  3622. * section information:                   objdump.             (line 165)
  3623. * section sizes:                         size.                (line   6)
  3624. * sections, full contents:               objdump.             (line 291)
  3625. * size:                                  size.                (line   6)
  3626. * size display format:                   size.                (line  26)
  3627. * size number format:                    size.                (line  65)
  3628. * sorting symbols:                       nm.                  (line 167)
  3629. * source code context:                   objdump.             (line 135)
  3630. * source disassembly:                    objdump.             (line 296)
  3631. * source file name:                      nm.                  (line 110)
  3632. * source filenames for object files:     objdump.             (line 169)
  3633. * stab:                                  objdump.             (line 310)
  3634. * start-address:                         objdump.             (line 320)
  3635. * stop-address:                          objdump.             (line 324)
  3636. * strings:                               strings.             (line   6)
  3637. * strings, printing:                     strings.             (line   6)
  3638. * strip:                                 strip.               (line   6)
  3639. * symbol index <1>:                      ranlib.              (line   6)
  3640. * symbol index:                          ar.                  (line  28)
  3641. * symbol index, listing:                 nm.                  (line 182)
  3642. * symbol line numbers:                   nm.                  (line 152)
  3643. * symbol table entries, printing:        objdump.             (line 329)
  3644. * symbols:                               nm.                  (line   6)
  3645. * symbols, discarding:                   strip.               (line   6)
  3646. * undefined symbols:                     nm.                  (line 217)
  3647. * Unix compatibility, ar:                ar cmdline.          (line   8)
  3648. * unwind information:                    readelf.             (line  91)
  3649. * updating an archive:                   ar cmdline.          (line 180)
  3650. * version:                               Top.                 (line   6)
  3651. * VMA in objdump:                        objdump.             (line  65)
  3652. * wide output, printing:                 objdump.             (line 356)
  3653. * writing archive index:                 ar cmdline.          (line 167)
  3654.  
  3655.  
  3656. 
  3657. Tag Table:
  3658. Node: Top1764
  3659. Node: ar3248
  3660. Node: ar cmdline5426
  3661. Node: ar scripts13569
  3662. Node: nm19257
  3663. Node: objcopy27453
  3664. Node: objdump49444
  3665. Node: ranlib63760
  3666. Node: size64515
  3667. Node: strings67362
  3668. Node: strip69712
  3669. Node: c++filt74922
  3670. Ref: c++filt-Footnote-178237
  3671. Node: addr2line78343
  3672. Node: nlmconv80943
  3673. Node: windres83549
  3674. Node: dlltool89282
  3675. Node: def file format99708
  3676. Node: readelf101446
  3677. Node: Selecting The Target System105835
  3678. Node: Target Selection106760
  3679. Node: Architecture Selection108742
  3680. Node: Reporting Bugs109570
  3681. Node: Bug Criteria110349
  3682. Node: Bug Reporting110902
  3683. Node: GNU Free Documentation License117996
  3684. Node: Index137723
  3685. 
  3686. End Tag Table
  3687.